dbd925a7a4
* Fixed whacky HTML indentation + Added fancy CSS! + Now HTML5 compatible!
57 lines
676 B
CSS
57 lines
676 B
CSS
html
|
|
{
|
|
background-color: #C0C0C0;
|
|
}
|
|
|
|
table
|
|
{
|
|
background-color: #fff;
|
|
border-spacing: 0px;
|
|
border-collapse: collapse;
|
|
border-color: gray;
|
|
}
|
|
|
|
tr
|
|
{
|
|
display: table-row;
|
|
vertical-align: inherit;
|
|
border-color: inherit;
|
|
}
|
|
|
|
td, th
|
|
{
|
|
display: table-cell;
|
|
vertical-align: inherit;
|
|
padding: 3px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
pre
|
|
{
|
|
border: 1px solid #ccc;
|
|
background-color: #eee;
|
|
}
|
|
|
|
body
|
|
{
|
|
min-width: 800px;
|
|
width: 95%;
|
|
margin: 10px auto;
|
|
background-color: white;
|
|
border: 4px #FF8C00 solid;
|
|
border-radius: 20px;
|
|
font-family: Calibri, Trebuchet MS;
|
|
}
|
|
|
|
header
|
|
{
|
|
text-align: center;
|
|
font-family: Segoe UI Light, Helvetica;
|
|
}
|
|
|
|
#content
|
|
{
|
|
padding: 0px 25px 25px 25px;
|
|
}
|
|
|