-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
134 lines (118 loc) · 2.38 KB
/
style.css
File metadata and controls
134 lines (118 loc) · 2.38 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
* {
margin: 0;
padding: 0;
}
body {
background-color: #000;
overflow: hidden;
font-size: 28px;
color: #FFF;
font-family: Helvetica, sans-serif;
}
#apps-background:after {
content: " ";
position: absolute;
display: block;
width: 100%;
height: 9999px;
background-color: rgba(0, 0, 0, 0.6);
}
.spinner {
position: absolute;
top: 50%;
left: 50%;
margin-left: -100px;
margin-top: -100px;
background-color: rgba(255,255,255, 0.2);
border-radius: 20px;
text-align: center;
}
@-webkit-keyframes spinner {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes spinner {
0% { -moz-transform: rotate(0deg); }
100% { -moz-transform: rotate(360deg); }
}
.spinner .symbol {
text-align: center;
font-size: 80px;
-webkit-animation: spinner 1s linear infinite;
-moz-animation: spinner 1s linear infinite;
}
.spinner .legend {
margin: 0 20px 20px 20px;
}
@-webkit-keyframes slideshow {
0% { left: -316px; }
11% { left: -948px; }
22% { left: -1580px; }
33% { left: -2212px; }
44% { left: -2844px; }
55% { left: -3476px; }
66% { left: -4108px; }
77% { left: -4740px; }
88% { left: -5372px; }
100% { left: -6004px; }
}
@-moz-keyframes slideshow {
0% { left: -316px; }
11% { left: -948px; }
22% { left: -1580px; }
33% { left: -2212px; }
44% { left: -2844px; }
55% { left: -3476px; }
66% { left: -4108px; }
77% { left: -4740px; }
88% { left: -5372px; }
100% { left: -6004px; }
}
#apps-foreground {
position: absolute;
width: 9999px;
height: 100%;
left: 0;
top: 50%;
margin-top: -178px;
margin-left: 50%;
-webkit-animation: slideshow 60s ease-in-out infinite alternate;
-moz-animation: slideshow 60s ease-in-out infinite alternate;
}
.app.foreground {
position: relative;
float: left;
background-color: rgba(0,0,0,0.8);
padding: 20px;
margin: 30px;
min-height: 256px;
border-radius: 50px;
width: 532px;
}
.app.foreground img {
position: absolute;
top: 50%;
left: 20px;
width: 256px;
height: 256px;
margin-top: -128px;
border-radius: 40px;
}
.app.foreground span {
display: block;
margin-left: 276px;
margin-bottom: 15px;
}
.app.foreground .name {
font-size: 34px;
font-weight: bold;
}
.app.foreground .category {
font-style: italic;
}
.app.background {
display: block;
float: left;
width: 100px;
height: 100px;
}