This repository has been archived by the owner on Apr 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathmain.css
67 lines (58 loc) · 1.81 KB
/
main.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
Copyright (c) 2014 Intel Corporation. All rights reserved.
Use of this source code is governed by a MIT-style license that can be
found in the LICENSE file.
*/
body {
margin: 0px;
overflow: hidden;
background: -webkit-linear-gradient(bottom, #e76840 0%, #f49541 65%, #ed7332 100%);
background: linear-gradient(to top, #e76840 0%, #f49541 65%, #ed7332 100%);
}
#sunburst.background {
background: -webkit-radial-gradient(50% 115%, circle, white 0%, white 9%, rgba(252, 217, 89, 0.8) 17%, rgba(246, 137, 55, 0) 45%);
background: radial-gradient( circle at 50% 115%, white 0%, white 9%, rgba(252, 217, 89, 0.8) 17%, rgba(246, 137, 55, 0) 45%);
}
#small-circle.background {
background: -webkit-radial-gradient(50% 115%, circle, rgba(250, 196, 72, 0.12) 0%, rgba(250, 196, 72, 0.12) 40%, transparent 40%);
background: radial-gradient( circle at 50% 115%, rgba(250, 196, 72, 0.12) 0%, rgba(250, 196, 72, 0.12) 40%, transparent 40%);
}
#big-circle.background {
background: -webkit-radial-gradient(40% 115%, farthest-side circle, rgba(222, 97, 62, 0.2) 0%, rgba(222, 97, 62, 0.3) 90%, transparent 90%);
background: radial-gradient( farthest-side circle at 40% 115%, rgba(222, 97, 62, 0.2) 0%, rgba(222, 97, 62, 0.3) 90%, transparent 90%);
}
.tile-overlay {
background: url(textures/bg-tile.png);
}
.background {
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
opacity: 1;
text-align: center;
}
canvas {
z-index: 10;
position: relative;
}
.logo {
position: fixed;
bottom: 0%;
margin-bottom: 70px;
width: 100%;
text-align: center;
z-index: 100;
}
.logo img {
width: 75%;
height: auto;
max-width: 477px;
}
@media (max-width: 520px) {
#logo {
background-size: 400px auto;
height: 42.7673 px;
}
}