-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.css
71 lines (63 loc) · 1.15 KB
/
default.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
* {
box-sizing: border-box;
height: 100%;
}
body {
margin: 0;
height: 100%;
overflow: hidden;
}
#header-wrapper , #footer-wrapper {
margin: 0;
width: 100%;
height: 13%;
display: table;
background-color: #323030;
}
#main-wrapper {
height: 76%;
width: 100%;
background-image: url("./bg/bg-ground.jpg");
background-repeat: no-repeat;
background-size: cover;
padding: 2%;
}
.test-button {
height: 20px;
margin: 0 auto;
text-align: center;
}
.icon {
height: 35%;
}
#header-wrapper h1 {
margin: 0;
text-align: center;
line-height: inherit;
vertical-align: middle;
font-family: 'Alfa Slab One';
display: table-cell;
color: ivory;
letter-spacing: 0.1em;
}
#footer-wrapper h3 {
margin: 0;
line-height: inherit;
vertical-align: middle;
text-align: center;
display: table-cell;
color:#7b7a7a;
}
#start-button {
height: 100%;
width: 2em;
line-height: inherit;
color: ivory;
vertical-align: middle;
display: table-cell;
margin: 0;
text-align: right;
padding-right: 1em;
padding-top: 1em;
font-size: 2em;
}