forked from charliebritton/website-placeholder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
61 lines (54 loc) · 996 Bytes
/
main.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
body {
margin: 0;
background-image: url(background-image.jpg);
background-size: cover;
background-position: center;
}
p {
display: block;
-webkit-margin-before: 0em;
-webkit-margin-after: 0em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
}
a {
color: white;
}
.viewport {
display: flex;
width: 100vw;
height: 100vh;
justify-content: center;
align-items: center;
}
.text-box {
height: auto;
width: auto;
margin: 1vh;
background-color: white;
border-radius: 1vh;
justify-content: center;
align-items: center;
border: 0.25vh solid #808080;
}
.title {
font-size: 6vh;
text-align: center;
font-family: 'Roboto', sans-serif;
padding: 1vh;
}
.subtitle {
font-size: 4vh;
text-align: center;
font-family: 'Roboto', sans-serif;
padding: 0 1vh 1vh 1vh;
}
.footer {
font-size: 1vh;
text-align: center;
font-family: 'Roboto', sans-serif;
padding: 0 1vh 1vh 1vh;
color: white;
position: absolute;
bottom: 0;
}