-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (33 loc) · 762 Bytes
/
style.css
File metadata and controls
38 lines (33 loc) · 762 Bytes
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
/* @import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap"); */
@font-face {
font-family: "Digital-7 Mono";
src: url("./fonts/digital-7-mono.ttf");
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f1f1f1;
font-family: "Orbitron", sans-serif;
}
#clock {
font-family: "Digital-7 Mono", sans-serif;
font-size: 3em;
color: #000;
background-color: #f1f1f1;
padding: 20px;
border: 5px solid #333;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
#txt {
display: inline-block;
font-size: 6rem;
}
#day {
display: inline-block;
font-size: 2rem;
letter-spacing: 5px;
}