This repository was archived by the owner on Nov 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
167 lines (153 loc) · 3.79 KB
/
style.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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
body{
font-family:'Helvetica Neue', Arial, "MS Trebuchet", sans-serif;
}
#filter{padding:5px 10px}
#filter a{
background-color:#aaa;
background-image:url(img/checkbox.png);
background-position:5px center;
background-repeat:no-repeat;
color:white;
font-size:0.8em;
padding:0.1em 0.5em 0.1em 25px;
text-decoration:none;
text-transform:uppercase;
-webkit-border-radius: 0.6em;
-moz-border-radius: 0.6em;
-ms-border-radius: 0.6em;
-o-border-radius: 0.6em;
border-radius: 0.6em;
}
#sort{
float:right;
font-size:0.8em;
padding:0.1em 0.5em 0.1em 25px;
border:none;
-webkit-border-radius: 0.6em;
-moz-border-radius: 0.6em;
-ms-border-radius: 0.6em;
-o-border-radius: 0.6em;
border-radius: 0.6em;
}
#sort:focus
{
outline:none;
}
#success.checked{
background-color:#06f;
}
#syncing.checked{
background-color:#f90;
}
#failed.checked
{
background-color:#f10;
}
#frame{
width:745px;
margin:100px auto 0;
}
#pannel
{
border:2px solid #eee;
padding:10px;
-webkit-border-top-right-radius:40px;
-moz-border-top-right-radius:40px;
-ms-border-top-right-radius:40px;
-o-border-top-right-radius:40px;
border-top-right-radius:40px;
}
.element{
width:160px;
height:160px;
padding:6px;
margin:2px;
font-size:small;
-webkit-border-top-right-radius:40px;
-moz-border-top-right-radius:40px;
-ms-border-top-right-radius:40px;
-o-border-top-right-radius:40px;
border-top-right-radius:40px;
background:#F10;
background:-webkit-gradient(linear,120 0,100% 0,from(#f30),to(#f60));
background:-moz-gradient(left,#f30,#f30 110,#f66 100%);
overflow:hidden;
color:#ccc;
}
.element a{
background:white;padding:0 0.5em;margin-right:-6px ;
font-size:0.5em;
text-transform:uppercase;
text-decoration:none;
color:#f30;
float:right;
-webkit-border-radius:0.5em 0 0 0.5em;
-moz-border-radius:0.5em 0 0 0.5em;
-ms-border-radius:0.5em 0 0 0.5em;
-o-border-radius:0.5em 0 0 0.5em;
border-radius:0.5em 0 0 0.5em;
-webkit-box-shadow:0 1px 3px #333;
}
.element.Success
{
background:#06F;
background:-webkit-gradient(linear,120 0,100% 0,from(#06F),to(#09f));
background:-moz-gradient(left,#06f,#06f 110,#09f 100%);
}
.element.Success a{color:#06F;}
.element.Syncing
{
background:#f90;
background:-webkit-gradient(linear,120 0,100% 0,from(#f90),to(#ff0));
background:-moz-gradient(left,#F90,#F90 110,#ff0 100%);
}
.element.Syncing a
{
color:#f60;
}
.element.large-size{
width:336px;
height:336px;
}
.element.large-size h1{
font-size:10em;
}
.element.large-size{
font-size:1em;
}
.element.large-size a{
font-size:1.4em;
}
.element.large-height{
height:240px;
}
.element.large-height h1{
font-size:8em;
}
.element.large-height a{
font-size:1em;
margin-top:1em;
}
.element h1{color:white;font-size:5em;margin:0.05em 0 0.2em 30px;text-transform:capitalize;white-space:nowrap}
.element h2{font-size:1em;margin:0;text-transform:capitalize;white-space:nowrap;}
.element p{margin:0px 0 5px 0;font-size:0.8em;}
.isotope,
.isotope .isotope-item {
/* change duration value to whatever you like */
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-o-transition-property: top, left, opacity;
transition-property: transform, opacity;
}