19 lines
382 B
CSS
19 lines
382 B
CSS
|
/* Label Color. Config default is white. */
|
||
|
label {
|
||
|
color: white;
|
||
|
font-family: "DejaVuSansMono Nerd Font", monospace;
|
||
|
}
|
||
|
|
||
|
/* Button Configuration */
|
||
|
button {
|
||
|
font-weight: normal;
|
||
|
border: none;
|
||
|
box-shadow: none;
|
||
|
margin-bottom: -8px;
|
||
|
margin-top: -8px;
|
||
|
padding-right: 0;
|
||
|
padding-left: 0;
|
||
|
background: none;
|
||
|
}
|
||
|
|