forked from NiklasMM/python-community-map
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
96 lines (78 loc) · 1.16 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
html, body {
height: 100%;
width: 100%;
margin: 0;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
}
body {
display: flex;
flex-flow: column;
}
#map {
height: 100%;
}
footer {
display: flex;
padding: 10px 20px;
align-items: center;
color: white;
background: #2b5b83;
}
footer a {
font-size: 16px;
color: white;
}
footer a:hover, a:active {
text-decoration: none;
}
.footer-logo {
width: 30px;
height: 30px;
}
.footer-text {
font-size: 20px;
margin: 0 15px;
}
.space {
flex-grow: 1;
}
.made-by {
text-align: right;
font-size: 14px;
}
.logo {
font-size: 1.5em;
font-family: 'Open Sans', sans-serif;
padding: 0.5em 0.2em 0.2em 0.5em;
}
.logo a {
text-decoration: none;
padding-left: 0.7em;
}
.logo img {
max-width: 42px !important;
border-radius: 50%;
vertical-align: middle;
}
.logo span {
vertical-align: middle;
padding-left: 0.5em;
}
@media only screen and (max-width: 768px) {
.footer-text {
font-size: 14px;
}
footer a {
font-size: 12px;
}
.made-by {
font-size: 10px;
}
.footer-logo {
font-size: 14px;
}
.logo img {
max-width: 32px !important;
}
}