-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathmain.css
More file actions
54 lines (46 loc) · 707 Bytes
/
main.css
File metadata and controls
54 lines (46 loc) · 707 Bytes
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
body {
display: flex;
flex-direction: column;
min-width: 375px;
}
header {
flex: 0 80px;
}
main {
flex: 1 calc(100vh - 110px);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
footer {
flex: 0 30px;
}
menu {
flex: 1;
display: flex;
/* overwrite Bootstrap so the menu does not wrap */
flex-direction: row !important;
list-style: none;
}
.navbar-brand {
padding-left: 0.3em;
border-bottom: solid rgb(182, 182, 182) thin;
}
menu .nav-item {
padding: 0 0.3em;
}
footer a {
float: right;
}
@media (max-height: 600px) {
header {
display: none;
}
footer {
display: none;
}
main {
flex: 1 100vh;
}
}