-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathRoutingResult.module.css
More file actions
163 lines (138 loc) · 2.8 KB
/
RoutingResult.module.css
File metadata and controls
163 lines (138 loc) · 2.8 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
@media (prefers-color-scheme: dark) {
.resultSelectableArea {
background-color: black;
color: white;
border-left-color: black !important;
}
.resultSummary {
border-left-color: black !important;
}
.routeHints div, .routeHints {
background-color: black;
}
}
.resultRow {
border-bottom: 1px lightgray solid;
}
.resultSelectableArea {
padding: 1rem 0;
border-left: white solid 0.25rem;
}
.resultSelectableArea:hover .resultSummary {
border-left: lightgray solid 0.25rem;
padding: 0 1rem 0 15px;
}
.resultSummary {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 0 1rem 0 15px;
border-left: white solid 0.25rem;
}
.selectedResultSummary {
border-left: #275dad solid 0.25rem !important;
padding: 0 1rem 0 15px;
}
.resultValues {
cursor: pointer;
width: 50%;
display: flex;
flex-direction: column;
}
.resultMainText {
font-size: large;
font-weight: bold;
margin-bottom: 0.1rem;
}
.resultSecondaryText,
.exportButton div,
.elevationHint {
color: #5b616a;
}
.resultTertiaryText {
color: #5b616a;
font-size: 12px;
}
.detailsButton,
.exportButton {
padding-top: 1px; /* correction for "height: auto" of svg */
}
.detailsButton div,
.detailsButtonExpanded div,
.exportButton div {
color: #5b616a;
font-size: 12px;
float: left;
padding-top: 0.15em;
padding-left: 0.5em;
}
.detailsButton svg,
.detailsButtonExpanded svg,
.exportButton svg {
float: left;
width: 1.2em;
height: auto;
}
.exportButton:active div,
.detailsButton:active div,
.detailsButtonExpanded:active div {
color: lightgray;
}
.detailsButton:active svg path,
.exportButton:active svg path,
.detailsButtonExpanded:active svg path {
fill: lightgray;
}
.exportButton:hover div,
.detailsButton:hover div,
.detailsButtonExpanded:hover div {
color: black;
}
.detailsButton:hover svg path,
.exportButton:hover svg path,
.detailsButtonExpanded:hover svg path {
fill: black;
}
.detailsButton svg path,
.exportButton svg path {
fill: #5b616a;
stroke: #5b616a;
}
.placeholderContainer {
margin: 1.08rem 1rem;
}
.placeholderMain {
height: 1.25rem;
width: 7rem;
background-color: lightgray;
margin-bottom: 0.5rem;
border-radius: 0.2rem;
animation-name: pulse;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-direction: alternate;
}
.placeholderSecondary {
height: 1rem;
width: 5rem;
margin-bottom: 0;
animation-delay: 0.25s;
}
@keyframes pulse {
from {
opacity: 0.5;
}
to {
opacity: 1;
}
}
.routeHints div {
padding: 0 1.5em 0.2em 1.4em;
}
.routeHints div {
font-size: small;
color: #f97777;
}
.routeHints {
padding-bottom: 1em;
}