reposition some buttons
This commit is contained in:
parent
470b3e2336
commit
0639aeae6f
6 changed files with 120 additions and 21 deletions
33
style.css
33
style.css
|
@ -56,7 +56,7 @@
|
|||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.text-red {
|
||||
|
@ -143,15 +143,23 @@ button:hover {
|
|||
border-color: var(--station-border-hover);
|
||||
}
|
||||
|
||||
div.filters {
|
||||
div#filters {
|
||||
display: flex;
|
||||
gap: var(--space-m);
|
||||
justify-items: stretch;
|
||||
}
|
||||
div.filters button, div.filters input {
|
||||
div#filters button, div#filters input {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
button#initialLoad {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
button.loadOSM {
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
ul#stationList {
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
|
@ -559,5 +567,24 @@ span[data-icon][data-icon=up-down] {
|
|||
span[data-icon][data-icon=location-searching] {
|
||||
mask-image: url(/md_icons/location-searching.svg);
|
||||
}
|
||||
span[data-icon][data-icon=load] {
|
||||
mask-image: url(/md_icons/load.svg);
|
||||
}
|
||||
span[data-icon].spinner {
|
||||
animation-delay: 0s;
|
||||
animation-direction: normal;
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: none;
|
||||
animation-iteration-count: infinite;
|
||||
animation-name: spinner;
|
||||
animation-play-state: running;
|
||||
animation-timing-function: linear;
|
||||
}
|
||||
|
||||
@keyframes spinner {
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=style.css.map */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue