-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (60 loc) · 1021 Bytes
/
style.css
File metadata and controls
73 lines (60 loc) · 1021 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
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
70
71
72
73
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');
body {
margin: 0;
padding: 0;
font-family: 'JetBrains Mono', monospace;
background-color: rgb(34, 35, 36);
color: rgb(186, 186, 186);
font-size: 2vh;
}
.container {
display: flex;
flex-flow: column;
justify-content: space-around;
}
.row1 {
display: flex;
flex-flow: column;
width: 100dvw;
height: 50dvh;
justify-content: center;
align-items: center;
}
#time,
#date {
font-weight: 700;
padding: 0;
margin: 0;
}
#time {
color: rgb(119, 184, 105);
font-size: 10vh;
}
#date {
font-size: 5vh;
}
.row2 {
display: flex;
flex-flow: row;
flex-wrap: wrap;
width: 100dvw;
height: 50dvh;
justify-content: center;
}
.section {
/* flex: 1; */
display: flex;
flex-direction: column;
justify-content: start;
align-items: start;
}
ul {
list-style-type: none;
}
.header {
color: rgb(61, 151, 226);
}
a {
text-decoration: none;
color: rgb(186, 186, 186);
}