-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathclock.css
More file actions
69 lines (60 loc) · 1.79 KB
/
clock.css
File metadata and controls
69 lines (60 loc) · 1.79 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
#clock-container {
position: fixed;
bottom: 30px;
right: 30px;
background: rgba(16, 22, 32, 0.6);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
padding: 12px 24px;
border-radius: 16px;
border: 1px solid rgba(0, 210, 255, 0.2);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
inset 0 0 10px rgba(0, 210, 255, 0.05);
display: flex;
flex-direction: column;
align-items: flex-end;
transition: all 0.3s ease;
}
#clock-container:hover {
border-color: rgba(0, 210, 255, 0.5);
transform: translateY(-2px);
}
.time-wrapper {
display: flex;
align-items: baseline;
gap: 4px;
}
#time-display {
font-size: 1.8rem;
font-weight: 700;
color: #ffffff;
text-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
letter-spacing: -0.5px;
margin: 0;
}
#seconds-display {
font-size: 1rem;
color: #00d2ff;
font-weight: 500;
opacity: 0.8;
width: 25px;
}
.details-wrapper {
font-size: 0.65rem;
font-weight: 600;
color: #00d2ff;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-top: 2px;
display: flex;
gap: 10px;
}
.status-dot {
height: 6px;
width: 6px;
background-color: #00d2ff;
border-radius: 50%;
display: inline-block;
margin-right: 4px;
box-shadow: 0 0 8px #00d2ff;
}