mirror of
				https://github.com/Zelda64Recomp/Zelda64Recomp.git
				synced 2025-10-30 08:03:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			61 lines
		
	
	
	
		
			563 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
	
		
			563 B
		
	
	
	
		
			Text
		
	
	
	
	
	
/*
 | 
						|
* 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;
 | 
						|
}
 |