-
Notifications
You must be signed in to change notification settings - Fork 1
/
countdown.css
76 lines (70 loc) · 1.41 KB
/
countdown.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
/* #time {
display: flex;
gap: 30px;
}
#time .circle {
position: relative;
width: 150px;
height: 150px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
} */
/* #time .circle::before {
content: "";
position: absolute;
inset: 0;
border: 10px solid #1b1a1c;
border-radius: 50%;
}
#time .circle::after {
content: "";
position: absolute;
width: 100px;
height: 100px;
background: #2f2e33;
border-radius: 50%;
border: 15px solid #4d4c51;
box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.25),
0 10px 10px rgba(0, 0, 0, 0.75), 0 -2px 2px rgba(255, 255, 255, 0.5),
inset 0 4px 2px rgba(0, 0, 0, 0.25),
inset 0 -2px 2px rgba(255, 255, 255, 0.5);
} */
/*
#time .circle svg {
position: relative;
width: 150px;
height: 150px;
transform: rotate(270deg);
}
#time .circle svg circle {
width: 100%;
height: 100%;
fill: transparent;
stroke-width: 8;
stroke: var(--clr);
stroke-linecap: round;
transform: translate(5px, 5px);
stroke-dasharray: 440;
}
*/
/*
#time div {
position: absolute;
text-align: center;
font-weight: 500;
color: #fff;
z-index: 10000;
color: var(--clr);
font-size: 1.65rem;
transform: translateY(-5px);
}
#time div span {
position: absolute;
transform: translateX(-50%) translateY(-15px);
font-size: 0.25rem;
font-weight: 500;
letter-spacing: 0.1rem;
} */