mirror of https://github.com/dirtbags/moth.git
75 lines
1001 B
CSS
75 lines
1001 B
CSS
/**** document ****/
|
|
|
|
html {
|
|
background: #222 url(grunge.png) repeat-x;
|
|
}
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
color: #fff;
|
|
margin: 50px 0 0 100px;
|
|
padding: 10px;
|
|
max-width: 700px;
|
|
}
|
|
|
|
a img {
|
|
border: 0px;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #2a2;
|
|
font-weight: bold;
|
|
}
|
|
|
|
a:hover {
|
|
color: #fff;
|
|
background: #2a2;
|
|
font-weight: bold;
|
|
}
|
|
|
|
code, pre, .readme {
|
|
color: #fff;
|
|
background-color: #555;
|
|
margin: 1em;
|
|
}
|
|
|
|
th, td {
|
|
vertical-align: top;
|
|
}
|
|
|
|
.scoreboard td {
|
|
height: 400px;
|
|
}
|
|
|
|
/**** heading ****/
|
|
|
|
h1:first-child {
|
|
text-transform: lowercase;
|
|
font-size: 1.6em;
|
|
background-color: #222;
|
|
opacity: 0.9;
|
|
padding: 3px;
|
|
color: #2a2;
|
|
margin: 0 0 1em 70px;
|
|
}
|
|
|
|
h1:first-child:before {
|
|
color: #fff;
|
|
letter-spacing: -0.1em;
|
|
content: "Capture The Flag: ";
|
|
}
|
|
|
|
/*** body ***/
|
|
|
|
p {
|
|
line-height: 1.4em;
|
|
margin-bottom: 20px;
|
|
color: #f4f4f4;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
color: #999;
|
|
letter-spacing: -0.05em;
|
|
}
|