mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-18 10:01:23 +01:00
markers - generate from config file
This commit is contained in:
parent
3dea76777b
commit
60057c52ed
6 changed files with 192 additions and 147 deletions
25
index.css
25
index.css
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue