-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
171 lines (147 loc) · 3.38 KB
/
index.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
.main-container {
position: relative;
}
.navigation {
background: #747880;
/* Old browsers */
background: -moz-linear-gradient(top, #FFFFFF 0%, #747880 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(100%, #747880));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #FFFFFF 0%, #747880 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #FFFFFF 0%, #747880 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, #FFFFFF 0%, #747880 100%);
/* IE10+ */
background: linear-gradient(top, #FFFFFF 0%, #747880 100%);
/* W3C */
width: 100%;
height: 2.5em;
cursor: pointer;
transition: box-shadow 0.5s;
display: flex;
flex-direction: row;
justify-content: center;
font-family: 'Dancing Script', cursive;
}
.navigation:hover {
box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.2);
}
.splashscreen {
width: 100%;
}
.top-graphic {
width: 25%;
}
.grid-container {
width: 100%;
margin: 0;
display: grid;
grid-template-columns: auto 50% auto;
}
.infotext {
grid-column: 2;
}
.footer {
width: 100%;
position: relative;
}
.bottom-graphic {
width: 100%;
}
.google-maps {
position: relative;
padding-bottom: 75%; // This is the aspect ratio
height: 0;
overflow: hidden;
}
.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
.poem {
text-align: center;
}
.current-page {
border-style: inset;
text-shadow: 2px 2px 5px green;
}
.menu-button {
outline: none;
padding-right: 30px;
padding-left: 30px;
font-size: 1.5em;
transition: text-shadow 0.5s;
text-decoration: none;
border-style: outset;
border-color: white;
color: black;
}
.menu-button:visited {
text-decoration: none;
color: black;
}
.menu-button:hover {
text-shadow: 2px 2px 5px #ffa07a;
}
.menu-button:active {
text-decoration: none;
color: black;
background: #747880;
/* Old browsers */
background: -moz-linear-gradient(top, #747880 0%, #FFFFFF 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #747880), color-stop(100%, #FFFFFF));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #747880 0%, #FFFFFF 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #747880 0%, #FFFFFF 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, #747880 0%, #FFFFFF 100%);
/* IE10+ */
background: linear-gradient(top, #747880 0%, #FFFFFF 100%);
}
.hotel, .taxi {
font-size: 1.7em;
text-align: center;
font-family: 'Roboto Mono', monospace;
}
.fully-booked {
text-decoration: line-through;
}
h1 {
font-family: 'Dancing Script', cursive;
font-size: 3.5em;
}
h2 {
font-family: 'Dancing Script', cursive;
font-size: 2.5em;
}
p {
font-size: 1.7em;
text-align: justify;
font-family: 'Roboto Mono', monospace;
}
ul {
font-size: 1.7em;
text-align: center;
font-family: 'Roboto Mono', monospace;
list-style-position: inside;
}
body {
display: flex;
flex-direction: column;
justify-content: space-between;
margin: 0;
height: 100%;
text-align: center;
position: relative;
}
html {
height: 100%;
width: 100%;
}