-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (70 loc) · 1.49 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
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url('fonts/roboto-v29-latin-regular.eot'); /* IE9 Compat Modes */
src: local(''),
url('fonts/roboto-v29-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/roboto-v29-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('fonts/roboto-v29-latin-regular.woff') format('woff'), /* Modern Browsers */
url('fonts/roboto-v29-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('fonts/roboto-v29-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
* {
font-family: 'Roboto', sans-serif;
text-decoration: none;
}
h2, h3{
font-weight: 200;
}
p{
font-size: 17px;
}
.outer_wrapper{
display: flex;
flex-flow: column;
height: 100%;
}
.column {
float: left;
width: 33.33%;
padding-bottom: 10px;
}
#fuchsbild{
width: 250px;
height: auto;
margin: 20px;
}
.column_map {
float: left;
margin-left: 20px;
margin-right: 20px;
flex-grow: 1;
min-height: 500px;
}
#mapid {
height: 100%;
width: 100%;
}
#legende_table{
width: 100%;
margin-left: 25px;
}
.center{
text-align: center;
}
.left{
text-align: left;
}
@media screen and (max-width: 900px) {
.column {
width: 95%;
}
#fuchsi{
display: none;
}
#info{
margin-left: 20px;
margin-right: 20px;
}
}