103 lines
1.6 KiB
CSS
103 lines
1.6 KiB
CSS
/** Common layout **/
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
font-family: "Open Sans", Helvetica, Arial, sans-serif ! important;
|
|
font-size: 12pt;
|
|
margin: 0px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 20pt;
|
|
}
|
|
|
|
a:link { color: #666;
|
|
text-decoration: underline;
|
|
}
|
|
a:visited { color: #666; }
|
|
a:hover { color: #000; }
|
|
a:active { color: #000; }
|
|
|
|
a.anchor {
|
|
display: block;
|
|
position: relative;
|
|
top: -50px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
#page {
|
|
min-height: 100%;
|
|
margin-bottom: -32px; /* to make room for the footer */
|
|
}
|
|
|
|
#wrapper {
|
|
margin: auto;
|
|
max-width: 1280px;
|
|
padding-top: 40px;
|
|
padding-bottom: 40px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
#header
|
|
{
|
|
position: fixed;
|
|
top: 0px;
|
|
width: 100%;
|
|
background-color: #000;
|
|
min-height: 40px;
|
|
}
|
|
|
|
.navButton {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
padding: 10px 20px 10px 20px;
|
|
text-decoration: none ! important;
|
|
}
|
|
|
|
#header .navButton {
|
|
color: #fff ! important;
|
|
}
|
|
|
|
#headerContent {
|
|
/*
|
|
color: #ccc;
|
|
text-align: right;
|
|
*/
|
|
text-align: center;
|
|
max-width: 1280px;
|
|
margin: auto;
|
|
min-height: 40px;
|
|
line-height: 40px;
|
|
}
|
|
|
|
#headerContent a:link,
|
|
#headerContent a:visited,
|
|
#headerContent a:hover,
|
|
#headerContent a:active {
|
|
color: #fff;
|
|
}
|
|
|
|
#footer
|
|
{
|
|
width: 100%;
|
|
border-top: #666 1px solid;
|
|
background-color: #aaa;
|
|
height: 32px;
|
|
}
|
|
|
|
#footerContent
|
|
{
|
|
font-size: 8pt;
|
|
color: #fff;
|
|
max-width: 1280px;
|
|
margin: auto;
|
|
text-align: center;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
}
|