countDownCom.less
1.96 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
@charset "UTF-8";
.count-down-com {
.count-down {
display: flex;
justify-content: flex-start;
align-items: center;
.container {
display: flex;
justify-content: center;
align-items: center;
.block {
display: flex;
justify-content: center;
align-items: center;
background-color: #ECECEC;
margin-left: 10px;
width: 36px;
height: 30px;
color: #333333;
font-size: 20px;
border-radius: 4px;
&.big-block {
width: 60px;
}
&.transparent {
background-color: transparent;
}
}
.colon {
margin-left: 10px;
color: #999999;
font-size: 20px;
}
}
&.style-2 {
.container {
.block {
background-color: #3C3C3C;
width: 46px;
height: 36px;
color: #FFFFFF;
font-size: 25px;
&.big-block {
width: 60px;
}
&.transparent {
background-color: transparent;
color: #333333;
}
}
.colon {
color: #3C3C3C;
font-size: 24px;
}
}
}
&.style-3 {
.container {
.block {
background-color: rgba(189, 164, 127, 1);
width: 36px;
height: 36px;
color: #FFFFFF;
font-size: 20px;
font-weight: 400;
&.big-block {
width: 60px;
}
}
.colon {
color: rgba(189, 164, 127, 1);
font-size: 20px;
font-weight: 400;
}
}
}
&.style-4 {
.container {
.block {
background-color: #3C3C3C;
width: 36px;
height: 36px;
color: #FCF7F1;
font-size: 20px;
font-weight: 400;
&.big-block {
width: 60px;
}
}
.colon {
color: #3C3C3C;
font-size: 20px;
font-weight: 400;
}
}
}
&.style-5 {
.container {
.block {
background-color: #481814;
width: 36px;
height: 36px;
color: #FFFFFF;
font-size: 20px;
font-weight: 400;
&.big-block {
width: 60px;
}
}
.colon {
color: #633531;
font-size: 24px;
font-weight: 300;
}
}
}
}
}