-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (44 loc) · 839 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
51
52
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
body {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
}
#dial {
margin-top: 1em;
}
#warning-output-container {
border-radius: 20px;
padding: 0.5em;
text-align: center;
width: 20em;
height: 2.5em;
font-size: 2em;
display: flex;
flex-direction: column;
justify-content: center;
}
.warning {
background-color: #ff914d;
border: 0px solid black;
}
.okay {
border: 3px solid black;
}
#decibel-output {
font-size: 3em
}
.header {
font-family: "Orbitron", sans-serif;
font-size: 3em;
padding: 1rem;
background-color: #ff914d;
align-self: stretch;
text-align: center;
}
.expanding {
flex-grow: 1;
padding: 1rem;
}