mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2025-01-03 18:42:00 +01:00
36 lines
534 B
CSS
36 lines
534 B
CSS
.presetSection ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.presetSection ul li {
|
|
display: inline-block;
|
|
}
|
|
|
|
.button {
|
|
display: inline-block;
|
|
border: none;
|
|
background-color: white;
|
|
border: 1px solid lightgray;
|
|
margin: 2px;
|
|
width: 7em;
|
|
box-sizing: border-box;
|
|
padding: 0.5em;
|
|
outline: none;
|
|
cursor: pointer;
|
|
}
|
|
.active .button {
|
|
border-color: red;
|
|
}
|
|
.button:focus {
|
|
outline: none;
|
|
border-style: dotted;
|
|
}
|
|
.button::-moz-focus-inner {
|
|
border: 0;
|
|
}
|
|
|
|
.values tbody + tbody tr:first-child td {
|
|
padding-top: 1em;
|
|
} |