mirror of https://github.com/dirtbags/moth.git
moved css stuff into puzzle dirs
This commit is contained in:
parent
9157577b54
commit
a0efd69b03
|
@ -10,7 +10,7 @@ print '''
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>1</title>
|
<title>1</title>
|
||||||
<link rel="stylesheet" type="text/css" href="../ctf.css" media="all" />
|
<link rel="stylesheet" type="text/css" href="ctf.css" media="all" />
|
||||||
<!-- key = ktFfb8R1Bw -->
|
<!-- key = ktFfb8R1Bw -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -14,7 +14,7 @@ print '''
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>2</title>
|
<title>2</title>
|
||||||
<link rel="stylesheet" type="text/css" href="../ctf.css" media="all" />
|
<link rel="stylesheet" type="text/css" href="ctf.css" media="all" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="wrapper">
|
<div id="wrapper">
|
||||||
|
|
|
@ -14,7 +14,7 @@ print '''
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>3</title>
|
<title>3</title>
|
||||||
<link rel="stylesheet" type="text/css" href="../ctf.css" media="all" />
|
<link rel="stylesheet" type="text/css" href="ctf.css" media="all" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="wrapper">
|
<div id="wrapper">
|
||||||
|
|
|
@ -17,7 +17,7 @@ print '''
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>4</title>
|
<title>4</title>
|
||||||
<link rel="stylesheet" type="text/css" href="../ctf.css" media="all" />
|
<link rel="stylesheet" type="text/css" href="ctf.css" media="all" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="wrapper">
|
<div id="wrapper">
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 626 B |
|
@ -1,54 +0,0 @@
|
||||||
html,body {
|
|
||||||
height: 100%;
|
|
||||||
min-height: 100%;
|
|
||||||
background-color: #000000;
|
|
||||||
background-image: url("binary.png");
|
|
||||||
background-repeat: repeat-x repeat-y;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#wrapper {
|
|
||||||
min-height: 100%;
|
|
||||||
height: 100%;
|
|
||||||
width: 800px;
|
|
||||||
margin: 0 auto;
|
|
||||||
border-left: 2px solid #009900;
|
|
||||||
border-right: 2px solid #009900;
|
|
||||||
font: .9em monospace;
|
|
||||||
color: #009900;
|
|
||||||
padding: 0;
|
|
||||||
background: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#content {
|
|
||||||
padding: 2em 1.5em 2em 1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer {
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
height: 2em;
|
|
||||||
line-height: 2em;
|
|
||||||
width: 800px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
input {
|
|
||||||
background-color: #222;
|
|
||||||
color: #fff;
|
|
||||||
border: 1px solid #009900;
|
|
||||||
padding: 1px 2px 1px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,h2,h3,h4 {
|
|
||||||
padding-bottom: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vertsep {
|
|
||||||
width: 100%;
|
|
||||||
height: 1px;
|
|
||||||
padding: 0;
|
|
||||||
margin: 2em auto 2em auto;
|
|
||||||
border-bottom: 1px dotted #222;
|
|
||||||
}
|
|
Loading…
Reference in New Issue