markers - generate from config file

This commit is contained in:
Azgaar 2021-09-25 21:49:34 +03:00
parent 3dea76777b
commit 60057c52ed
6 changed files with 192 additions and 147 deletions

View file

@ -428,6 +428,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;