-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (46 loc) · 914 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
53
54
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
height : 100vh;
display : flex;
}
button {
border : 15px solid black;
height: 280px;
margin: 30px;
padding : 0px;
}
.container {
display: flex;
flex-direction: column;
flex-grow: 1;
}
.top {
background-color: black;
display : flex;
justify-content: center;
align-items: center;
}
.content {
background-color: #ffea00;
font-size: xx-large;
text-align: center;
font-weight: bold;
padding: 30px;
}
.UI {
display : flex;
flex-direction: column;
background-color: #ffea00;
height: auto;
flex:1;
justify-content: space-evenly;
align-items: center;
}
#result {
font-size: x-large;
font-weight: bold;
color : black;
}
#headerTitle {
color : white;
}