-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (58 loc) · 1.01 KB
/
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
51
52
53
54
55
56
57
58
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inconsolata', monospace;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
background: #020100;
}
.container {
/* margin:auto; */
margin-top: 10%;
border: 10px solid rgb(0, 240, 0);
width: 27em;
height: 27em;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color:rgb(130, 211, 238);
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);
}
.date-container{
font-size: 200%;
}
.time {
font-size: 75px;
color:rgb(0, 240, 0);
}
.blink-colon {
animation: blink 1s infinite linear;
}
@keyframes blink {
0%, 100% {
opacity: 1;
}
30% {
opacity: 0.2;
}
}
.date-container {
margin-top: 6px;
color: rgba(255,255,255,0.8);
}
@media only screen and (max-width: 300px) {
.container{
margin-top: 30%;
}
}