109 lines
1.6 KiB
CSS
109 lines
1.6 KiB
CSS
/* General styles */
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
body { font-family: Arial, sans-serif; }
|
|
a { text-decoration: none; }
|
|
a:hover { text-decoration: underline; }
|
|
|
|
h1, h2, h3, h4 {
|
|
margin: 0;
|
|
clear: both;
|
|
}
|
|
|
|
/* Header */
|
|
#header {
|
|
margin: 0;
|
|
padding: 16px 0 0;
|
|
text-align: center;
|
|
background: #222;
|
|
color: #0f0;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
#name {
|
|
margin: 0;
|
|
color: #fff;
|
|
font-size: 2.5em;
|
|
}
|
|
|
|
#tagline {
|
|
margin: 0 auto;
|
|
padding: 0 0 8px;
|
|
font-size: .9em;
|
|
color: #72bbfa;
|
|
border-bottom: 1px solid #fff;
|
|
width: 304px;
|
|
}
|
|
|
|
|
|
/* Navigation */
|
|
#nav {
|
|
width: 100%;
|
|
margin: 8px 0 0;
|
|
padding: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
#nav ul {
|
|
clear: both;
|
|
display: inline-block;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#nav li {
|
|
/*width: 61px;*/
|
|
margin: 0;
|
|
display: inline-block;
|
|
list-style: none;
|
|
padding: 4px 8px;
|
|
background-color: #fff;
|
|
border-radius: 2px 2px 0 0;
|
|
}
|
|
|
|
#nav a {
|
|
color: #428bca;
|
|
}
|
|
|
|
/* Main body */
|
|
.section {
|
|
padding: 16px;
|
|
}
|
|
|
|
.section:nth-child(even) {
|
|
background-color: #222;
|
|
color: #fff;
|
|
}
|
|
|
|
.button {
|
|
display: inline-block;
|
|
margin: 0;
|
|
padding: 8px;
|
|
|
|
background-color: #428bca;
|
|
border-color: #285e8e;
|
|
border-radius: 2px;
|
|
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #3276b1;
|
|
border-color: #284e8e;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Footer */
|
|
#footer {
|
|
margin: 0;
|
|
padding: .5em;
|
|
clear: both;
|
|
background: #222;
|
|
color: #fff;
|
|
font-size: 1em;
|
|
}
|