blob: 975d18c65412feac6d553be3c7e6aebf01723cf0 (
plain)
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
|
div.navbar_parent {
display: flex;
flex-flow: column;
align-items: center;
}
ul.navbar {
margin-top: 0;
margin-bottom: 0;
padding: 0;
display: inline-flex;
flex-wrap: wrap;
justify-content: space-around;
max-width: 100%;
}
ul.navbar li {
display: inline;
text-align: center;
height: 1rem;
line-height: 1rem;
}
ul.navbar li.nav_button {
flex-shrink: 1;
margin: 0.3rem;
}
ul.navbar li span {
display: inline-block;
}
ul.navbar li a {
display: inline-block;
white-space: nowrap;
width: 100%;
}
|