-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (60 loc) · 1.05 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
html, body {
font-size: 62.5%;
height: 100%;
background: #2E1912 url("background-mdc.jpg") no-repeat fixed center;
}
body {
background-size: cover;
display: -ms-flexbox;
display: -webkit-box;
display: -moz-box;
display: -webkit-flex;
display: flex;
-ms-flex-pack: center;
-webkit-box-pack: center;
-moz-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}
.container {
max-width: 90rem;
}
header {
font-size: 1.7rem;
}
main {
flex-direction: column;
justify-content: center;
}
.content {
padding: 0 1.5rem;
}
h1 {
text-align: center;
font-family: 'Bellefair', serif;
font-size: 8.8rem;
color: #F0DFCD;
text-shadow: 0 .5rem .4rem rgba(0, 0, 0, .5);
line-height: 1.6;
}
.btnwrap {
text-align: center;
}
a, a:hover {
text-align: center;
text-decoration: none;
}
button {
width: 150px;
box-shadow: 0 .5rem .4rem rgba(0, 0, 0, .5);
}
.btn {
justify-content: center;
color: #F0DFCD;
}
footer {
position: fixed;
bottom: 0;
justify-content: flex-start;
}