2024-06-10 17:37:53 +00:00
|
|
|
h1 {
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
white-space: pre-wrap;
|
2024-06-10 19:05:24 +00:00
|
|
|
/* word-break: break-all; */
|
2024-06-10 17:37:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
background-color: currentColor;
|
|
|
|
color: currentColor;
|
|
|
|
border: 1px solid currentColor;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
background-color: transparent;
|
2024-06-11 04:16:13 +00:00
|
|
|
color: currentColor;
|
2024-06-10 17:37:53 +00:00
|
|
|
font: inherit;
|
2024-06-10 19:05:24 +00:00
|
|
|
padding: 4px;
|
2024-06-10 17:37:53 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
min-width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
border: 1px solid #0008;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:active {
|
|
|
|
background-color: #0004;
|
|
|
|
}
|
|
|
|
|
2024-06-11 04:16:13 +00:00
|
|
|
button:disabled {
|
|
|
|
background-color: #80808040;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-06-10 17:37:53 +00:00
|
|
|
button.selected {
|
|
|
|
border: 1px solid #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
background-color: #0004;
|
|
|
|
color: white;
|
|
|
|
font: inherit;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 6px;
|
|
|
|
border-radius: 4px;
|
|
|
|
height: 36px;
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid #0008;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: currentColor;
|
|
|
|
}
|