-
Notifications
You must be signed in to change notification settings - Fork 0
/
web-timer-black-friday.css
171 lines (161 loc) · 3.79 KB
/
web-timer-black-friday.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
168
169
170
171
[data-timer-time] {
display: none;
}
.web-timer-black-friday {
background: #000;
padding: 5px 0 3px 0;
color: #f3cb38;
text-align: center;
font-family: Calibri,sans-serif;
position: relative;
}
.web-timer-black-friday__title {
text-transform: uppercase;
font-size: 22px;
display: inline-block;
vertical-align: top;
margin: 10px 0;
line-height: 1;
}
.web-timer-black-friday__btn-more {
background: #f3cb38;
color: #000;
display: inline-block;
text-decoration: none;
font-size: 18px;
padding: 4px 20px 5px 20px;
transition: .3s;
vertical-align: top;
margin: 5px 0;
}
.web-timer-black-friday__btn-close {
background: #f3cb38;
color: #000;
display: inline-block;
text-decoration: none;
font-size: 18px;
transition: .3s;
vertical-align: top;
margin: 5px 0;
position: absolute;
right: 5px;
top: 0;
cursor: pointer;
height: 14px;
width: 14px;
text-align: center;
line-height: 10px;
}
.web-timer-black-friday__btn-more:hover,
.web-timer-black-friday__btn-close:hover {
text-decoration: none;
transition: .3s;
opacity: .8;
}
.web-timer-black-friday__timer {
display: inline-block;
margin: 5px 20px;
}
.web-timer-black-friday__timer-category {
display: inline-block;
vertical-align: middle;
}
.web-timer-black-friday__timer-category-title {
text-align: center;
font-size: 10px;
color: #fff;
margin: 0 0 0 0;
}
.web-timer-black-friday__timer-block {
width: 15px;
height: 20px;
border-radius: 4px;
background: #f3cb38;
display: inline-block;
vertical-align: top;
color: #000;
font-size: 12px;
font-weight: bold;
line-height: 20px;
}
.web-timer-black-friday__timer-dotted {
width: 5px;
height: 20px;
display: inline-block;
vertical-align: top;
color: #fff;
font-size: 12px;
font-weight: bold;
line-height: 20px;
}
/* size */
/* size-big */
.web-timer-black-friday_size-big {
padding: 5px 0 3px 0;
}
.web-timer-black-friday_size-big .web-timer-black-friday__title {
font-size: 32px;
}
.web-timer-black-friday_size-big .web-timer-black-friday__btn-more {
font-size: 22px;
padding: 7px 20px 8px 20px;
}
.web-timer-black-friday_size-big .web-timer-black-friday__timer-block {
width: 20px;
height: 30px;
font-size: 20px;
line-height: 28px;
}
.web-timer-black-friday_size-big .web-timer-black-friday__timer-category-title {
font-size: 12px;
}
/* templates */
/* black-cyan */
.web-timer-black-friday_black-cyan {
color: cyan;
}
.web-timer-black-friday_black-cyan .web-timer-black-friday__timer-block {
background: cyan;
}
.web-timer-black-friday_black-cyan .web-timer-black-friday__btn-more {
background: cyan;
}
.web-timer-black-friday_black-cyan .web-timer-black-friday__btn-close {
background: cyan;
color: black;
}
/* red-white */
.web-timer-black-friday_red-white {
color: white;
background: red;
}
.web-timer-black-friday_red-white .web-timer-black-friday__timer-block {
background: white;
}
.web-timer-black-friday_red-white .web-timer-black-friday__btn-more {
background: white;
}
.web-timer-black-friday_red-white .web-timer-black-friday__btn-close {
background: white;
color: red;
}
/* black-white */
.web-timer-black-friday_black-white {
color: black;
background: white;
}
.web-timer-black-friday_black-white .web-timer-black-friday__timer-block {
color:white;
background: black;
}
.web-timer-black-friday_black-white .web-timer-black-friday__timer-category-title {
color: black;
}
.web-timer-black-friday_black-white .web-timer-black-friday__btn-more {
background: black;
color:white;
}
.web-timer-black-friday_black-white .web-timer-black-friday__btn-close {
background: black;
color: white;
}