-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (107 loc) · 2.96 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@import url(https://fonts.googleapis.com/css?family=Montserrat);
@font-face {
font-family: 'bebas_neueregular';
src: url("https://dl.dropboxusercontent.com/u/81135676/bebasneue_regular-webfont.eot");
src: url("https://dl.dropboxusercontent.com/u/81135676/bebasneue_regular-webfont.woff2") format("woff2"), url("https://dl.dropboxusercontent.com/u/81135676/bebasneue_regular-webfont.woff") format("woff"), url("https://dl.dropboxusercontent.com/u/81135676/bebasneue_regular-webfont.ttf") format("truetype"), url("https://dl.dropboxusercontent.com/u/81135676/bebasneue_regular-webfont.svg#bebas_neueregular") format("svg");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'bebas_neuebold';
src: url("https://dl.dropboxusercontent.com/u/81135676/bebasneue_bold-webfont.eot");
src: url("https://dl.dropboxusercontent.com/u/81135676/bebasneue_bold-webfont.woff2") format("woff2"), url("https://dl.dropboxusercontent.com/u/81135676/bebasneue_bold-webfont.woff") format("woff"), url("https://dl.dropboxusercontent.com/u/81135676/bebasneue_bold-webfont.ttf") format("truetype"), url("https://dl.dropboxusercontent.com/u/81135676/bebasneue_bold-webfont.svg#bebas_neuebold") format("svg");
font-weight: normal;
font-style: normal;
}
body, html {
display: block;
padding: 0;
margin: 0;
width: 100%;
position: relative;
height: 100%;
}
body {
font-family: "bebas_neuebold", "Arial", sans-serif;
}
section {
position: relative;
width: 100%;
height: 100%;
background: radial-gradient(circle, #012706, #020814);
}
#beerCanvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 100;
}
.coming_content {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 70%;
margin: 0 auto;
color: white;
text-align: center;
z-index: 101;
}
.coming_content h1 {
font-size: 5em;
margin: 0;
letter-spacing: 2px;
text-align: center;
color: white;
}
.coming_content .separator_container {
width: 100%;
display: block;
text-align: center;
position: relative;
margin: 12px 0;
}
.coming_content .separator_container:before, .coming_content .separator_container:after {
display: table;
content: "";
}
.coming_content .separator_container:after {
clear: both;
}
.coming_content .separator {
color: white;
margin: 0 auto 1em;
width: 11em;
}
.coming_content .line_separator svg {
width: 30px;
height: 20px;
}
.coming_content .line_separator:before, .coming_content .line_separator:after {
display: block;
width: 40%;
content: " ";
margin-top: 14px;
border: 1px solid white;
}
.coming_content .line_separator:before {
float: left;
}
.coming_content .line_separator:after {
float: right;
}
.coming_content h3 {
font-family: "Montserrat", sans-serif;
letter-spacing: 2px;
line-height: 2;
font-size: 1.3em;
font-weight: 400;
text-align: center;
margin: 0;
}
.coming_content h3 a {
text-decoration: underline;
}