-
Notifications
You must be signed in to change notification settings - Fork 3
/
unconf.css
201 lines (171 loc) · 3.18 KB
/
unconf.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*
Follow following guides/rules when editing CSS in this project:
- BEM http://getbem.com/introduction/
- Airbnb Styleguide https://github.com/airbnb/css
*/
body {
font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #47317D;
}
header {
padding: 2em 0 0;
text-align: center;
background-color: #DBD4C4;
background: linear-gradient(90deg, #CBC4B4 0%, #DBD4C4 20%, #DBD4C4 80%, #CBC4B4 100%);
background-image: url('./assets/group_header.jpg');
background-size: cover;
background-position: center;
overflow: hidden;
position: relative;
width: 100%;
}
header img {
margin-bottom: 2em;
max-width: 80%;
}
nav {
position: sticky;
top: 0;
display: flex;
justify-content: center;
height: 70px;
font-size: 1.5em;
background-color: #DBD4C4;
background: linear-gradient(90deg, #CBC4B4 0%, #DBD4C4 20%, #DBD4C4 80%, #CBC4B4 100%);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
z-index: 10;
}
nav .container {
display: flex;
width: 100%;
max-width: 800px;
}
nav a {
display: flex;
justify-content: center;
align-items: center;
flex: 1;
color: #47317d;
letter-spacing: 0.1rem;
transition: all 0.5s ease;
font-size: 1rem;
text-decoration: none;
}
nav a:hover {
color:white;
background-color: rgba(71, 49, 125, 0.8);
transition: all 0.5s ease;
}
nav .slider {
position: absolute;
bottom: 0;
width: 0;
height: 6px;
background-color: #47317d;
transition: left 0.3s ease;
}
@media (max-width: 600px) {
nav {
height: 50px;
}
nav a {
font-size: 0.8rem;
}
}
@media (max-width: 380px) {
nav {
display: none;
}
}
@media only screen and (device-width : 414px) and (device-height : 896px) and (-webkit-device-pixel-ratio : 3) {
/* disable nav on huge screen iphones (f.e. iPhone X Max */
nav {
display: none;
}
}
a,
a:visited {
color: #47317D;
}
article,
footer {
margin: 2em auto 4em;
background-color: #fff;
max-width: 800px;
width: 80vw;
}
article h2,
article h3 {
color: #EA605F;
font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
article h2 {
font-size: 3em;
}
article h3 {
margin-bottom: 0.2em;
font-size: 1.5em;
}
article blockquote {
margin: 1em;
padding-left: 1em;
border-left: 2px solid rgba(71, 49, 125, 0.2);
}
.buy-ticket {
display: flex;
justify-content: center;
}
.buy-ticket .buy-ticket__cta {
display: inline-block;
margin: 1em 0 2em;
padding: 1em 5em;
background-color: rgb(71, 49, 125);
color: #fff;
}
.separator {
width: 100%;
display: flex;
justify-content: space-between;
}
.separator img {
width: 14%;
height: intrinsic;
}
@media (max-width: 500px) {
.separator img:first-child,
.separator img:last-child {
display: none;
}
.separator img {
width: 22%;
}
}
.map {
margin-left: 3em;
margin-bottom: 3em;
float: right;
}
.map #map {
width: 400px;
height: 300px;
}
.map__marker {
width: 80px;
height: 80px;
background-image: url('./assets/logo.png');
background-size: contain;
}
@media (max-width: 700px) {
.map {
margin-left: 0;
float: none;
}
.map #map {
width: 100%;
max-height: 40vh;
}
}
article#contact { }
article#contact a {
text-decoration: none;
}