-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
47 lines (39 loc) · 828 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
html, body {
height: 100%;
}
.vertical-center {
min-height: 100%;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
-webkit-box-pack: center;
-moz-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
}
.jumbotron.vertical-center {
margin-top: 20%;
margin-left: 15%;
width: 70%;
height: 30%;
background-color: white;
}
.row.bottom-padding {
margin-bottom: 5px;
}
.row.extra-bottom-padding {
margin-bottom: 20px;
}
.btn.start {
padding-left: 15px;
padding-right: 15px;
}