-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
115 lines (95 loc) · 1.43 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body {
font-family: courier, monospace;
font: 14px;
background-color: rgba(0, 0, 0, 0.836);
color: rgba(245, 245, 245, 0.801);
}
a {
color: #0bc;
text-decoration: none;
z-index: 100;
}
#cy {
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
}
/* Loading section */
#loading {
position: absolute;
left: 0;
top: 50%;
width: 100%;
text-align: center;
margin-top: -0.5em;
font-size: 2em;
color: #fff;
}
#loading.loaded {
display: none;
}
#info {
position: absolute;
bottom: 0;
}
#clear {
position: absolute;
right: 0;
top: 0;
margin: 0.25em;
visibility: hidden;
}
#search-wrapper {
position: absolute;
left: 0;
top: 25px;
z-index: 9999;
margin: 0.5em;
width: 14em;
}
#search {
width: 14em;
font-family: inherit;
}
body.has-start #clear {
visibility: visible;
}
#end {
display: none;
}
body.has-start:not(.has-end) #end {
display: inline;
}
body.has-start:not(.has-end) #start {
display: none;
}
body.calc #loading {
display: block;
}
.tt-dropdown-menu {
background: #fff;
width: 14em;
border: 1px solid #ccc;
max-height: 80vh;
max-height: calc( 100vh - 4em );
overflow: auto;
margin-top: 0.5em;
}
.tt-dropdown-menu * {
margin: 0;
padding: 0;
}
.tt-suggestion {
margin: 0;
padding: 0;
cursor: pointer;
}
.tt-suggestion + .tt-suggestion {
border-top: 1px solid #ccc;
}
.ac-name {
font-size: 14px;
color: rgba(0, 0, 0, 0.836);
}