-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (39 loc) · 721 Bytes
/
style.css
File metadata and controls
44 lines (39 loc) · 721 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
html,
body {
height: 100%;
overflow: hidden;
}
.wrapper {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.columns {
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-end;
background-color: black;
padding: 5vh 5vh 0 5vh;
}
.columns > div {
border: solid;
border-width: 1px;
border-color: black;
}
.buttons {
margin-top: 5vh;
display: flex;
width: 13em;
justify-content: space-between;
align-items: center;
}
.buttons > button {
background-color: white;
font-size: 2vh;
font-weight: 600;
padding: 0.3em;
border: solid black 2px;
}