-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.css
87 lines (71 loc) · 1.41 KB
/
module.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
/*span.eds_counter {
font: 800 40px system-ui;
content: counter(count);
animation: counter 5s linear infinite alternate;
counter-reset: count 0;
}
@keyframes counter {
0% {
counter-increment: count 0;
}
10% {
counter-increment: count 1;
}
20% {
counter-increment: count 2;
}
30% {
counter-increment: count 3;
}
40% {
counter-increment: count 4;
}
50% {
counter-increment: count 5;
}
60% {
counter-increment: count 6;
}
70% {
counter-increment: count 7;
}
80% {
counter-increment: count 8;
}
90% {
counter-increment: count 9;
}
100% {
counter-increment: count 10;
}
}*/
/* Countdown*/
#countdown {
display: inline-block;
padding: 10px;
border-radius: 10px;
background: #f39200;
color: #fff;
font-family: sans-serif;
font-size: 30px;
font-weight: 100;
text-align: center;
}
#countdown > div {
display: inline-block;
padding-left: 2px;
padding-right: 2px;
}
#countdown div > div,
#countdown div > span {
margin-right: .25rem !important;
margin-left: .25rem !important;
}
#countdown div > span {
min-width: 35px;
text-align: right;
}
#countdown .label {
padding-top: 5px;
font-size: 16px;
}