mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-06 14:55:04 +01:00
62 lines
563 B
Plaintext
62 lines
563 B
Plaintext
|
/*
|
||
|
* Default styles for all the basic elements.
|
||
|
*/
|
||
|
|
||
|
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;
|
||
|
}
|