mirror of
https://github.com/turboderp-org/exui.git
synced 2026-05-11 00:10:03 +00:00
Settings popup and persistent settings
This commit is contained in:
40
static/settings.css
Normal file
40
static/settings.css
Normal file
@@ -0,0 +1,40 @@
|
||||
|
||||
.settings-float {
|
||||
position: fixed;
|
||||
bottom: 10px;
|
||||
left: 90px;
|
||||
width: 228px;
|
||||
height: 65px;
|
||||
background: var(--background-color-view);
|
||||
border-radius: 10px;
|
||||
box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
|
||||
color: white;
|
||||
padding: 10px;
|
||||
z-index: 999;
|
||||
border: 1px solid var(--background-color-view);
|
||||
}
|
||||
|
||||
.settings-float::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
right: 100%;
|
||||
top: 30%;
|
||||
border-width: 15px 22px 15px 0;
|
||||
border-style: solid;
|
||||
border-color: transparent var(--background-color-view); transparent transparent;
|
||||
}
|
||||
|
||||
.checkbox-sc {
|
||||
color: var(--textcolor-menu);
|
||||
align-items: center;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.checkbox-sc:hover {
|
||||
filter: brightness(140%);
|
||||
cursor: pointer;
|
||||
}
|
||||
Reference in New Issue
Block a user