-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (50 loc) · 958 Bytes
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inconsolata', monospace;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: #020100;
}
.container {
border: 10px solid rgb(0, 240, 0);
width: 450px;
height: 450px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: #fff;
font-size: 32px;
border-radius: 50%;
background: rgb(0, 0, 0);
box-shadow:
0 0 5px rgb(0, 240, 0),
0 0 10px rgb(0, 240, 0),
0 0 15px rgb(0, 240, 0);
}
.time {
font-size: 2em;
color: rgb(0, 240, 0);
}
.blink-colon {
animation: blink 1s infinite linear;
}
@keyframes blink {
0%, 100% {
opacity: 1;
}
30% {
opacity: 0.4;
}
}
.data-container {
margin-top: 6px;
font-size: 24px;
color: rgba(255, 255, 255, 0.8);
}