blob: 370860e6d7d069ed5091dbb2cba308d28081e967 [file] [log] [blame]
Radek Krejcid23f0df2017-08-31 16:34:49 +02001nav {
2 background-color: #3B4257;
3 padding-left: 1em;
4}
5
6nav a {
7 text-decoration: none;
8 display: inline-block;
9 padding: 0.2em 1em 0.1em 1em;
10 color: #FAFAFA;
11}
12
13nav a:visited, a:link {
14 color: inherited;
15}
16
17nav a:hover, nav a.active {
18 background-color: #FAFAFA;
19 color: #000
20}
21
22nav a.active:hover {
23 cursor: default;
24}
25
26.item {
27 cursor: pointer;
28 border-radius: 4px;
29 margin-right: 0.5em;
30 padding: 0.3em 1em 0.3em 0.7em;
31 display: inline-block;
32 position: relative;
33 left: 0.5em;
34 top: 0.5em;
35 color: black;
36}
37
38.item.selected {
39 background-color: #454D67;
40 color: #FAFAFA;
41}
42
43.item.selected:hover {
44 cursor: default;
45}
46
47.item:hover {
48 background-color: #454D67;
49 color: #FAFAFA;
50}
51
52.schema {
53 display: block;
54}
55
56.schema-revision {
57 display: block;
58 font-family: monospace;
59 font-size: x-small;
60}