64 lines
No EOL
906 B
CSS
64 lines
No EOL
906 B
CSS
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;
|
|
word-break: break-all;
|
|
}
|
|
|
|
hr {
|
|
margin: 0;
|
|
width: 100%;
|
|
background-color: currentColor;
|
|
color: currentColor;
|
|
border: 1px solid currentColor;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
button {
|
|
background-color: transparent;
|
|
border: none;
|
|
color: white;
|
|
font: inherit;
|
|
padding: 6px;
|
|
border-radius: 4px;
|
|
min-width: 36px;
|
|
height: 36px;
|
|
border: 1px solid #0008;
|
|
user-select: none;
|
|
}
|
|
|
|
button:active {
|
|
background-color: #0004;
|
|
}
|
|
|
|
button.selected {
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
input {
|
|
background-color: #0004;
|
|
border: none;
|
|
color: white;
|
|
font: inherit;
|
|
box-sizing: border-box;
|
|
padding: 6px;
|
|
border-radius: 4px;
|
|
height: 36px;
|
|
width: 100%;
|
|
border: 1px solid #0008;
|
|
}
|
|
|
|
a {
|
|
color: currentColor;
|
|
} |