blob: d9796c1c706af22f6c81556bd051b28e12ef3fca (
plain)
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
|
@import url('https://fonts.googleapis.com/css?family=Google+Sans&display=swap');
:root{
--title-color: #ff80a4;
--text-color: #ff2674;
--background-color: #202124;
}
.countup {
text-align: center;
margin-bottom: 20px;
}
h1,h2{
color: var(--title-color);
text-align: center;
}
html{
background-color: var(--background-color);
}
.countup .timeel {
display: inline-block;
padding: 10px;
background: #151515;
margin: 0;
color: white;
min-width: 2.6rem;
margin-left: 13px;
border-radius: 10px 0 0 10px;
}
.countup span[class*="timeRef"] {
border-radius: 0 10px 10px 0;
margin-left: 0;
background: var(--title-color);
color: black;
}
|