blob: 0550f9c692c1d443482b4cf2dada74cac8911433 (
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
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
|
body {
-webkit-user-select: none;
display: -webkit-box;
font-size: 100%;
overflow: hidden;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: 0;
}
#settings-title {
-webkit-padding-end: 24px;
padding-top: 1em;
padding-bottom: 1em;
text-align: end;
font-size: 125%;
font-weight: normal;
color: #53627d;
}
#navbar-container {
background-color: #f8fafd;
width: 300px;
}
#destination-container {
background-color: #ffffff;
padding: 10px;
}
#destination-container > h1 {
font-size: 100%;
margin: 0;
}
#options-container {
padding: 10px;
}
#separator {
background: -webkit-gradient(linear,
left top,
right top,
from(#a4a4a4),
to(#cccccc));
height: 100%;
width: 10px;
}
#mainview {
-webkit-box-flex: 1;
-webkit-padding-start: 10px;
background-color: #cccccc;
}
.hidden {
display: none;
}
select {
margin: 0;
}
.link-button {
background-color: transparent;
border: none;
color: blue;
cursor: pointer;
text-decoration: underline;
padding: 0;
}
.text-button {
background-color: transparent;
border-color: transparent;
padding: 0;
}
|