-
Notifications
You must be signed in to change notification settings - Fork 7
/
deriviste.css
132 lines (130 loc) · 2.68 KB
/
deriviste.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
html,body {
font-family: Avenir Next, Avenir, Helvetica, sans-serif;
}
#mapillary,#introduction {
position: absolute;
right: 0;
top: 0;
height: 70%;
width: 40%;
background-color: #E6E9ED;
}
#introduction {
z-index: 100;
overflow: scroll;
}
#introduction .inner {
padding: 30px 40px 20px 40px;
max-width: 80%;
color: #356685;
}
#map {
position: absolute;
background-color: #AAD3DF;
bottom: 0;
left: 0;
height: 100%;
width: 60%;
}
#controls {
position: absolute;
bottom: 0;
right: 25%;
height: 30%;
width: 15%;
background-color: #637381;
}
#controls .inner {
padding: 10px;
}
#username { margin-bottom: 3px; }
#uploading { position: absolute; bottom: 0px; }
#credentials-container { margin-bottom: 10px; }
#upload, #delete {
padding: 8px;
color: white;
border-width: 0;
letter-spacing: 1px;
cursor: pointer;
}
#upload {
background-color: #00BCFF;
}
#delete {
background-color: #E05643;
}
#upload:disabled {
color: #a6a6a6;
background-color: #0084B3;
}
#delete:disabled {
color: #a6a6a6;
background-color: #B8311E;
}
#tag_editor {
position: absolute;
bottom: 0;
right: 0;
height: 30%;
width: 25%;
background-color: #D7DADD;
}
#tag {
margin-left: auto;
margin-right: auto;
text-align: center;
}
#tag_editor input {
padding: 0;
border-width: 0px;
}
#flash {
position: absolute;
z-index: 100000;
width: 300px;
height: 50px;
margin: auto;
top: 0; left: 0; bottom: 0; right: 0;
background-color: #3F3;
color: black;
font-size: 1.3em;
display: none;
font-weight: bold;
text-align: center;
padding-top: 5px;
}
/* Autocomplete */
.aa-input-container { display: inline-block; position: relative; margin-bottom: 10px;}
.aa-input-search {
min-width: 200px;
border: 1px solid rgba(228, 228, 228, 0.6);
padding: 12px 28px 12px 12px;
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.aa-input-search::-webkit-search-decoration, .aa-input-search::-webkit-search-cancel-button, .aa-input-search::-webkit-search-results-button, .aa-input-search::-webkit-search-results-decoration {
display: none;
}
.aa-input-icon {
height: 16px;
width: 16px;
position: absolute;
top: 50%;
right: 16px;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
fill: #e4e4e4;
}
.aa-dropdown-menu {
background-color: #fff;
border: 1px solid rgba(228, 228, 228, 0.6);
min-width: 200px;
box-sizing: border-box;
margin-top: -5px;
}
.aa-suggestion { padding: 0 12px 0 12px; cursor: pointer; }
.aa-suggestion * { margin: 0 !important; }
.aa-suggestion + .aa-suggestion { border-top: 1px solid rgba(228, 228, 228, 0.6); }
.aa-suggestion:hover, .aa-suggestion.aa-cursor { background-color: rgba(0, 241, 241, 0.35); }