-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (45 loc) · 805 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
body {
height: 100vh;
margin: 0px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#container {
width: 90vw;
height: 90vh;
background-color: #6ba1c4;
display: flex;
flex-direction: column;
justify-content: center;
border: solid 2px black;
}
#buttons {
display: flex;
justify-content: center;
gap: 1vw;
}
button {
flex: 1;
padding: 2vw;
margin: 1vw;
background-color: #d6d6d6;
border: solid 1px black;
font-size: 4vw;
border-radius: 25px;
}
button:hover {
background-color: #c1c1c1;
}
#results {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
flex: auto;
}
p {
font-size: 3vw;
}