forked from CodeTraversal/JavaScript-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (56 loc) · 1.19 KB
/
Copy pathstyle.css
File metadata and controls
64 lines (56 loc) · 1.19 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
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Doto", sans-serif;
color: greenyellow;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #212121;
}
.container {
padding: 40px 60px;
display: flex;
justify-content: center;
align-items: center;
background-color: #2e2e2e;
border: 2px solid #4d4d4d;
border-radius: 24px;
box-shadow: 0 0 30px rgba(173, 255, 47, 0.1),
0 0 60px rgba(173, 255, 47, 0.05);
}
.clock {
display: flex;
align-items: center;
gap: 20px;
}
.main-time {
display: flex;
align-items: center;
gap: 8px;
font-size: 5rem;
}
.colon {
animation: blink 1s step-start infinite;
margin-bottom: 6px;
}
.side-info {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 2px;
font-size: 1.6rem;
opacity: 0.85;
padding-bottom: 4px;
border-left: 1px solid #4d4d4d;
padding-left: 14px;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}