forked from PoliCTF/2015.polictf.it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_index.html
118 lines (105 loc) · 2.27 KB
/
_index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html public "display of awesomeness">
<html>
<head>
<meta charset="utf-8">
<title>Index of pages</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
@import url(http://fonts.googleapis.com/css?family=Pacifico);
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 26px;
line-height: 1.5;
color: #333;
background: #fefefe;
}
div.page {
margin: 0 auto;
position:relative;
width: 600px;
padding: 0 10px 30px;
}
h1 {
font-family: 'Pacifico', Georgia, serif;
font-size: 90px;
font-weight: normal;
color: #a3312d;
letter-spacing: -1px;
line-height: 1;
margin: 110px 0 50px;
border: 20px;
text-align: left;
}
a, a:visited {
color: #a3312d;
text-decoration: none;
}
a:hover, a:focus, a:active {
color: #932c28;
}
ul {
margin: 15px 0 0;
padding: 0;
list-style-type: none;
border: 1px dashed #ddd;
}
li a {
display: block;
padding: 5px 20px;
border-top: 1px dashed #ddd;
background-color: #fff;
-ms-transition: background .1s ease-in;
-moz-transition: background .1s ease-in;
-webkit-transition: background .1s ease-in;
transition: background .1s ease-in;
}
li:first-child a {
border-top: none;
}
li a:hover {
background-color: #fefef2;
}
li .date {
color: #888;
font-size: 12px;
float: right;
line-height: 42px;
}
.✓ {
display: block;
margin-top: 90px;
padding: 5px 0;
font-size: 12px;
color: #999;
}
</style>
</head>
<body>
<div class="page">
<h1>Pages index</h1>
<ul>
<li>
<a href="index.html">index.html <span class="date">2015/07/12 12:29 AM</span></a>
</li>
<li>
<a href="instructions.html">instructions.html <span class="date">2015/07/11 07:42 PM</span></a>
</li>
<li>
<a href="reg_ko.html">reg_ko.html <span class="date">2015/07/11 07:42 PM</span></a>
</li>
<li>
<a href="reg_ok.html">reg_ok.html <span class="date">2015/07/11 07:42 PM</span></a>
</li>
<li>
<a href="registration.html">registration.html <span class="date">2015/07/11 07:42 PM</span></a>
</li>
<li>
<a href="rules.html">rules.html <span class="date">2015/07/11 07:42 PM</span></a>
</li>
</ul>
<div class="✓">
Powered by <a href="http://lucuma.github.com/Clay">Clay</a>
</div>
</div>
</body>
</html>