71 lines
736 B
Plaintext
71 lines
736 B
Plaintext
* {
|
|
font-family: "rmlui-debugger-font";
|
|
}
|
|
|
|
div
|
|
{
|
|
display: block;
|
|
}
|
|
|
|
p
|
|
{
|
|
display: block;
|
|
}
|
|
|
|
h1
|
|
{
|
|
display: block;
|
|
}
|
|
|
|
em
|
|
{
|
|
font-style: italic;
|
|
}
|
|
|
|
strong
|
|
{
|
|
font-weight: bold;
|
|
}
|
|
|
|
select
|
|
{
|
|
text-align: left;
|
|
}
|
|
|
|
tabset tabs
|
|
{
|
|
display: block;
|
|
}
|
|
|
|
table {
|
|
box-sizing: border-box;
|
|
display: table;
|
|
}
|
|
tr {
|
|
box-sizing: border-box;
|
|
display: table-row;
|
|
}
|
|
td {
|
|
box-sizing: border-box;
|
|
display: table-cell;
|
|
}
|
|
col {
|
|
box-sizing: border-box;
|
|
display: table-column;
|
|
}
|
|
colgroup {
|
|
display: table-column-group;
|
|
}
|
|
thead, tbody, tfoot {
|
|
display: table-row-group;
|
|
}
|
|
|
|
body {
|
|
--main-bg-color: #ffffff;
|
|
--text-color: #000000;
|
|
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: var(--main-bg-color);
|
|
color: var(--text-color);
|
|
} |