99 lines
971 B
CSS
99 lines
971 B
CSS
body
|
|
{
|
|
font-family: -apple-system, BlinkMacSystemFont, segoe ui, Roboto, helvetica neue, Arial, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol;
|
|
font-size: 1rem;
|
|
direction: __MSG_@@bidi_dir__;
|
|
padding: 0 7px 3px 7px;
|
|
min-width: 750px;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, p
|
|
{
|
|
margin: .5rem 0;
|
|
font-family: inherit;
|
|
font-weight: 400
|
|
}
|
|
|
|
h1
|
|
{
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
h2
|
|
{
|
|
font-size: 2rem;
|
|
}
|
|
|
|
h3
|
|
{
|
|
font-size: 1.75rem;
|
|
}
|
|
|
|
h4
|
|
{
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
h5
|
|
{
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
h6
|
|
{
|
|
font-size: 1rem;
|
|
}
|
|
|
|
p
|
|
{
|
|
margin: 7px 0;
|
|
}
|
|
|
|
a
|
|
{
|
|
color: #0288d1;
|
|
text-decoration: none;
|
|
}
|
|
|
|
hr
|
|
{
|
|
border: 0;
|
|
border-bottom: 1px solid #000;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
input[disabled]
|
|
{
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.highlight
|
|
{
|
|
background: yellow;
|
|
color: #000;
|
|
}
|
|
|
|
@media(prefers-color-scheme: dark)
|
|
{
|
|
body, input
|
|
{
|
|
color: #e8e6e3;
|
|
background: #181a1b;
|
|
}
|
|
|
|
hr
|
|
{
|
|
border-bottom-color: #e8e6e3;
|
|
}
|
|
|
|
input
|
|
{
|
|
border: #474747 1px solid;
|
|
}
|
|
|
|
input[disabled]
|
|
{
|
|
opacity:.5;
|
|
}
|
|
}
|