markers - generate from config file

This commit is contained in:
Dranorter 2021-10-06 17:02:46 -04:00
parent 85839f1d47
commit e12e37a24d
6 changed files with 215 additions and 133 deletions

View file

@ -422,6 +422,31 @@ button.options:hover {
cursor: pointer;
}
#options button i.icon-cog {
position: absolute;
padding: 0.1em 0.3em;
background-color: var(--bg-lighter);
border-radius: 50%;
visibility: hidden;
opacity: 0;
transition: 0.4s ease-in-out;
}
#options button i.icon-cog:hover {
color: #111;
background-color: var(--bg-light);
transform: rotateZ(180deg);
}
#options button i.icon-cog:active {
transform: translateY(1px);
}
#options button:hover i.icon-cog {
visibility: visible;
opacity: 1;
}
input[type="color"] {
-webkit-appearance: none;
cursor: pointer;