mirror of
https://github.com/turboderp-org/exui.git
synced 2026-03-15 00:07:27 +00:00
55 lines
910 B
CSS
55 lines
910 B
CSS
|
|
body {
|
|
font-family: var(--font-family);
|
|
font-size: var(--font-size-medium);
|
|
padding: 0px;
|
|
margin: 0px;
|
|
display: flex;
|
|
background-color: var(--background-color-menu);
|
|
color: var(--textcolor-menu);
|
|
}
|
|
|
|
.p-header {
|
|
font-family: var(--font-family);
|
|
font-size: var(--font-size-large);
|
|
}
|
|
|
|
.vflex {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.vflex.grow {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.hflex {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.hflex.grow {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.no-select {
|
|
user-select: none; /* Standard syntax */
|
|
-webkit-user-select: none; /* Chrome and Safari */
|
|
-moz-user-select: none; /* Firefox */
|
|
-ms-user-select: none; /* IE 10+ */
|
|
}
|
|
|
|
svg {
|
|
fill: var(--iconcolor);
|
|
color: var(--iconcolor);
|
|
text-shadow: 5px 5px 5px rgba(0, 0, 0, 1.0);
|
|
}
|
|
|
|
svg.active {
|
|
fill: var(--iconcolor-active);
|
|
}
|