2010-09-09 15:14:39 -06:00
|
|
|
/* green phosphor: #2a4 */
|
|
|
|
|
2011-03-13 21:46:56 -06:00
|
|
|
/**** Color Scheme ****/
|
2010-03-02 20:45:21 -07:00
|
|
|
html {
|
2011-03-13 21:46:56 -06:00
|
|
|
background: #112 url(smoke.jpg) no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
}
|
|
|
|
|
|
|
|
body, h1:first-child:before {
|
|
|
|
color: #ddc;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3 {
|
|
|
|
color: #1dd;
|
2010-03-02 20:45:21 -07:00
|
|
|
}
|
|
|
|
|
2011-03-13 21:46:56 -06:00
|
|
|
a {
|
|
|
|
color: #f80;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: #112;
|
|
|
|
background-color: #f80;
|
|
|
|
}
|
|
|
|
|
|
|
|
.readme, pre {
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**** document ****/
|
|
|
|
|
2010-03-02 20:45:21 -07:00
|
|
|
body {
|
|
|
|
font-family: sans-serif;
|
|
|
|
padding: 10px;
|
|
|
|
max-width: 700px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**** heading ****/
|
|
|
|
|
|
|
|
h1:first-child {
|
|
|
|
text-transform: lowercase;
|
|
|
|
font-size: 1.6em;
|
|
|
|
padding: 3px;
|
|
|
|
margin: 0 0 1em 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1:first-child:before {
|
2010-09-09 15:14:39 -06:00
|
|
|
letter-spacing: -0.1em;
|
|
|
|
content: "Capture The Flag: ";
|
2010-03-02 20:45:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**** body ****/
|
|
|
|
|
|
|
|
a img {
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2010-09-13 16:58:30 -06:00
|
|
|
text-decoration: underline;
|
2010-03-02 20:45:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3 {
|
|
|
|
letter-spacing: -0.05em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.readme {
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
2010-09-09 15:14:39 -06:00
|
|
|
border: solid #ddc 2px;
|
2010-03-02 20:45:21 -07:00
|
|
|
padding: 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-03 15:22:50 -07:00
|
|
|
th {
|
2010-03-02 20:45:21 -07:00
|
|
|
vertical-align: top;
|
2010-03-03 15:22:50 -07:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
vertical-align: top;
|
2010-10-26 16:43:51 -06:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
|
|
|
font-weight: bold;
|
2010-03-02 20:45:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
line-height: 1.4em;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
2010-09-09 15:14:39 -06:00
|
|
|
border: 1px solid #ddc;
|
2010-03-02 20:45:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-09 15:14:39 -06:00
|
|
|
|
2010-10-26 16:43:51 -06:00
|
|
|
/*** navigation bar ***/
|
2010-09-09 15:14:39 -06:00
|
|
|
|
2010-10-26 16:43:51 -06:00
|
|
|
nav h2 {
|
|
|
|
display: none;
|
2010-09-09 15:14:39 -06:00
|
|
|
}
|
|
|
|
|
2010-10-26 16:43:51 -06:00
|
|
|
nav ul {
|
|
|
|
list-style: none;
|
|
|
|
text-align: center;
|
2010-09-09 15:14:39 -06:00
|
|
|
}
|
|
|
|
|
2010-10-26 16:43:51 -06:00
|
|
|
nav li {
|
|
|
|
display: inline;
|
2010-09-09 15:14:39 -06:00
|
|
|
}
|
|
|
|
|
2010-10-26 16:43:51 -06:00
|
|
|
nav li a {
|
2010-09-09 15:14:39 -06:00
|
|
|
text-transform: lowercase;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
2010-10-26 16:43:51 -06:00
|
|
|
nav li + li:before {
|
|
|
|
content: " | ";
|
2010-09-09 15:14:39 -06:00
|
|
|
}
|
|
|
|
|
2010-03-02 20:45:21 -07:00
|
|
|
/**** special cases ****/
|
|
|
|
|
|
|
|
.wide {
|
|
|
|
max-width: inherit;
|
|
|
|
}
|
|
|
|
|
2010-09-09 15:14:39 -06:00
|
|
|
.figure {
|
|
|
|
margin: 0.5em 1em;
|
|
|
|
float: right;
|
|
|
|
font-size: small;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2010-10-26 16:43:51 -06:00
|
|
|
#scoreboard td {
|
|
|
|
height: 300px;
|
2010-03-02 20:45:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#battlefield {
|
|
|
|
border: 2px solid green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.solved {
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|