legacy-dotfiles/static/css/main.css

214 lines
3.3 KiB
CSS
Raw Normal View History

2011-10-17 02:12:10 +02:00
* {
2011-12-09 17:10:44 +01:00
border: 0;
margin: 0;
padding: 0;
2011-10-17 02:12:10 +02:00
}
a {
2011-12-09 17:10:44 +01:00
color: #FFC000;
text-decoration: none;
2011-10-17 02:12:10 +02:00
}
a:hover {
2011-12-09 17:10:44 +01:00
text-decoration: underline;
2011-10-17 02:12:10 +02:00
}
a:visited {
2011-12-09 17:10:44 +01:00
color: #FF8A00;
2011-10-17 02:12:10 +02:00
}
body {
2011-12-09 17:10:44 +01:00
background-color: #000000;
color: #000000;
font-family: "DejaVu Sans", sans, sans-serif;
2011-10-17 02:12:10 +02:00
}
dd {
margin-left: 40px;
}
p {
2011-12-09 17:10:44 +01:00
margin: 1em 0px;
2011-10-17 02:12:10 +02:00
}
ul {
2011-12-09 17:10:44 +01:00
margin: 1em 0;
padding-left: 40px;
2011-10-17 02:12:10 +02:00
}
#body {
2011-12-09 17:10:44 +01:00
background-color: #777;
2011-10-17 02:12:10 +02:00
}
#container {
2011-12-09 17:10:44 +01:00
margin: 0 auto 0 auto;
width: 700px;
2011-10-17 02:12:10 +02:00
}
#container #footer {
2011-12-09 17:10:44 +01:00
background-color: #0C191C;
color: #EEEEEC;
font-size: 10px;
padding: 5px;
border-bottom-left-radius: 5px;
2011-12-09 16:59:24 +01:00
border-bottom-right-radius: 5px;
2011-10-17 02:12:10 +02:00
}
#content {
2011-12-09 17:10:44 +01:00
margin-left: 100px;
padding: 5px 20px 1px 20px;
2011-10-17 02:12:10 +02:00
}
#content .container {
2011-12-09 17:10:44 +01:00
color: #EEEEEC;
2011-10-17 02:12:10 +02:00
}
#content .container .header {
2011-12-09 17:10:44 +01:00
background-color: transparent;
padding-bottom: 5px;
padding-left: 0;
padding-top: 5px;
2011-10-17 02:12:10 +02:00
}
#content .container .header a {
2011-12-09 17:10:44 +01:00
color: inherit;
text-decoration: none;
2011-10-17 02:12:10 +02:00
}
#content .container .header span.tagline {
2011-12-09 17:10:44 +01:00
color: #EEEEEC;
2011-10-17 02:12:10 +02:00
font-size: 12px;
}
#content .container .header span.title {
2011-12-09 17:10:44 +01:00
background-color: #2E3436;
left: -5px;
padding: 5px;
position: relative;
top: -5px;
2011-10-17 02:12:10 +02:00
}
#header {
2011-12-09 17:10:44 +01:00
background-color: #252A2B;
2011-10-17 02:12:10 +02:00
}
2011-12-09 16:59:24 +01:00
#subheader {
background-color: #0c181b;
2011-12-09 17:10:44 +01:00
color: #fff;
text-align: right;
font-size: 12px;
padding: 5px;
2011-12-09 16:59:24 +01:00
}
2011-10-17 02:12:10 +02:00
#logo {
2011-12-09 17:10:44 +01:00
float: left;
height: 100px;
margin: 0 20px 23px 0;
width: 100px;
2011-10-17 02:12:10 +02:00
}
#ryu {
2011-12-09 17:10:44 +01:00
color: #F57900;
2011-12-09 16:59:24 +01:00
position: relative;
2011-12-09 17:10:44 +01:00
top: -3px;
2011-10-17 02:12:10 +02:00
}
#slash {
2011-12-09 17:10:44 +01:00
position: relative;
top: 3px;
2011-10-17 02:12:10 +02:00
}
#menu {
2011-12-09 17:10:44 +01:00
margin-left: -5px;
float: left;
width: 100px;
clear: left;
2011-10-17 02:12:10 +02:00
}
#menu a {
2011-12-09 17:10:44 +01:00
color: #FFC000;
text-decoration: none;
2011-10-17 02:12:10 +02:00
}
#title {
2011-12-09 17:10:44 +01:00
color: #EEEEEC;
height: 50px;
line-height: 50px;
2011-10-17 02:12:10 +02:00
}
#title sup {
2011-12-09 17:10:44 +01:00
font-size: 11px;
position: relative;
top: 5px;
2011-10-17 02:12:10 +02:00
}
.activity_even {
2011-12-09 17:10:44 +01:00
background-color: #2E3436;
2011-10-17 02:12:10 +02:00
}
.activity_even, .activity_uneven {
2011-12-09 17:10:44 +01:00
border-bottom: 1px solid #444444;
color: #EEEEEC;
font-size: 12px;
margin: 0 20px;
padding: 2px 0 2px 5px;
2011-10-17 02:12:10 +02:00
}
.activity_last {
2011-12-09 17:10:44 +01:00
border-bottom: none;
2011-10-17 02:12:10 +02:00
}
.activity_uneven {
2011-12-09 17:10:44 +01:00
background-color: #0C191C;
2011-10-17 02:12:10 +02:00
}
.container {
2011-12-09 17:10:44 +01:00
background-color: #0C191C;
border: 1px solid #2E3436;
margin-bottom: 20px;
padding: 2px 5px;
padding-left: 10px;
2011-10-17 02:12:10 +02:00
}
.clear {
2011-12-09 17:10:44 +01:00
clear: both;
2011-10-17 02:12:10 +02:00
}
.clearleft {
2011-12-09 17:10:44 +01:00
clear: left;
2011-10-17 02:12:10 +02:00
}
.container .header {
2011-12-09 17:10:44 +01:00
background-color: #2E3436;
color: #F57900;
font-weight: bold;
margin: -2px -5px 0 -10px;
padding-left: 5px;
2011-10-17 02:12:10 +02:00
}
.container .footer {
2011-12-09 17:10:44 +01:00
background-color: #2E3436;
color: #0C191C;
font-size: 10px;
margin: 0 -5px -2px -10px;
padding-left: 5px;
2011-10-17 02:12:10 +02:00
}
2011-12-09 13:01:16 +01:00
.emblems {
text-align: right;
2011-12-09 17:10:44 +01:00
float: right;
2011-12-09 16:59:24 +01:00
margin-top: -2px;
2011-12-09 13:01:16 +01:00
}
2011-11-05 16:37:37 +01:00
.markdown h3 {
margin: 1em 0;
}
2011-10-17 02:12:10 +02:00
.navigation a {
2011-12-09 17:10:44 +01:00
color: #FFC000;
2011-10-17 02:12:10 +02:00
}
.navigation a.next {
2011-12-09 17:10:44 +01:00
float: right;
2011-10-17 02:12:10 +02:00
}