forked from germanysbestkeptsecret/Wookmark-jQuery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
158 lines (142 loc) · 2.95 KB
/
main.css
File metadata and controls
158 lines (142 loc) · 2.95 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/** General page styling **/
html {
background-color: #e5e5e5;
font-family: "Helvetica Neue Light", "Helvetica Neue", Arial, sans-serif;
}
header h1 {
text-align: center;
font-size: 30px;
font-weight: 200;
margin: 30px 0 10px 0;
}
header p {
text-align: center;
font-size: 14px;
color: #666666;
margin: 0;
font-weight: 200;
}
/**
* Progress bar for imagesLoaded
*/
.progress-bar {
background-color: #0BC20B;
height: 2px;
position: absolute;
top: 0;
left: 0;
right: 0;
width: 0;
-webkit-box-shadow: 0 1px 3px rgba(11, 194, 11, 0.2);
-moz-box-shadow: 0 1px 3px rgba(11, 194, 11, 0.2);
box-shadow: 0 1px 3px rgba(11, 194, 11, 0.2);
-webkit-transition: width 0.3s ease-out;
-moz-transition: width 0.3s ease-out;
-o-transition: width 0.3s ease-out;
transition: width 0.3s ease-out;
}
/**
* Placerholder css
*/
.wookmark-placeholder {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #eee;
border: 1px solid #dedede;
z-index: -1;
}
/**
* Grid container
*/
.tiles-wrap {
position: relative; /** Needed to ensure items are laid out relative to this container **/
margin: 0;
padding: 0;
list-style-type: none;
display: none;
}
/**
* Grid items
*/
.tiles-wrap li {
display: block;
opacity: 1;
list-style-type: none;
background-color: #fff;
float: left;
cursor: pointer;
width: 200px;
padding: 4px;
border: 1px solid #dedede;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.tiles-wrap li.wookmark-inactive {
visibility: hidden;
opacity: 0;
}
.tiles-wrap li:hover {
background-color: #fafafa;
}
.tiles-wrap img {
display: block;
}
.tiles-wrap a {
padding: 5px 8px;
color: #555;
text-align: center;
display: table-cell;
vertical-align: middle;
width: 200px;
height: 200px;
font-size: 2em;
font-weight: bold;
text-decoration: none;
}
/**
* Filters
*/
#filters {
list-style-type: none;
text-align: center;
margin: 0 5% 0 5%;
}
#filters:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
#filters li {
font-size: 12px;
float: left;
padding: 6px 8px 4px;
cursor: pointer;
margin: 0 10px;
-webkit-transition: all 0.15s ease-out;
-moz-transition: all 0.15s ease-out;
-o-transition: all 0.15s ease-out;
transition: all 0.15s ease-out;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#filters li:hover {
background: #4281f5;
color: #ffffff;
}
#filters li.active {
background: #4281f5;
color: #ffffff;
}