-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (37 loc) · 806 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
@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans&display=swap');
body {
background-color: #232323;
}
#logo {
max-width: 25%;
display: block;
margin: auto;
}
header {
font: 2rem 'Pixelify Sans';
color: aliceblue;
text-align: center;
}
label {
font-family: 'Pixelify Sans';
}
.grid-item {
display: inline-grid;
width: 30%;
min-width: 250px;
padding-left: 4px;
padding-right: 5px;
margin: 10px;
background-color: #424242;
text-align: center;
border: 2px solid rgb(121, 121, 121);
}
.dataValue {
font-family: 'Roboto Mono', monospace;
}
.dataTitle {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#actions {
text-align: center;
}