-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
117 lines (95 loc) · 1.68 KB
/
main.css
File metadata and controls
117 lines (95 loc) · 1.68 KB
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
112
113
114
115
116
117
body {
background-image: url("./assets/panorama.jpg");
background-size: cover;
background-repeat: no-repeat;
position: absolute;
margin: 0;
height: 100vh;
width: 100vw;
z-index: 1;
font-family: 'Montserrat', sans-serif;
font-size: 1.3vh;
color: #231f20;
display: flex;
flex-direction: column;
justify-content: space-between;
}
h1, h3 {
font-family: 'Montserrat', sans-serif;
background-color: #fff;
padding: 10px 14px;
}
h3, .timer {
margin: 0;
}
h1 > span {
font-size: 12pt;
text-align: right;
}
.main-content {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.lg-cta {
visibility: hidden;
}
.lg-cta > img {
width: 35%;
height: auto;
}
.logo {
background-color: #231f20;
padding: 30px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
#logo {
max-width: 10%;
}
.site-links {
display: flex;
flex-direction: row;
}
.site-links > a {
text-decoration: none;
color: #fff;
margin: 0px 15px;
}
.site-links > a:hover {
text-decoration: underline;
}
.notice {
display: flex;
flex-direction: column;
align-items: flex-end;
padding: 50px;
}
.footer {
z-index:2;
}
.footer > img {
width: 100%;
height: auto;
}
.timer {
background-color: #231f20;
color: #fff;
text-align: center;
font-size: 2.5vh;
font-family: 'Consolas';
padding: 10px 14px;
}
@media screen and (min-width: 1400px) {
.footer {
display: none;
}
.lg-cta {
visibility: visible;
}
.site-links > a {
font-size: 1.2rem;
}
}