-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
116 lines (114 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Aranja — Code in the Dark</title>
<link href='https://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
<style>
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
margin: 0;
}
html, body {
height: 100%;
}
a {
text-decoration: none;
}
.page {
background: #000 repeating-linear-gradient(135deg, #111, #111 5px, #000 5px, #000 10px);
color: #ffffff;
display: flex;
font-family: 'Inconsolata', monospace;
font-size: 24px;
flex-direction: column;
min-height: 100%;
}
.page__header,
.page__main,
.page__footer {
align-items: center;
display: flex;
justify-content: center;
}
.page__main {
flex: 1;
}
.challenges {
border: 1px solid #777;
border-bottom: none;
list-style-type: none;
padding: 0;
width: 90%;
}
.challenges__item {
border-bottom: 1px solid #777;
padding: 24px;
}
.challenges__link {
color: #45ba75;
}
.challenges__link:hover {
color: #38945d;
}
.trp {
background: transparent no-repeat center / contain;
border: 0;
color: transparent;
font: 0/0 a;
text-shadow: none;
}
.aranja {
background-image: url(images/aranja.svg);
height: 50px;
margin: 20px;
opacity: .7;
width: 100px;
}
.cid {
background-image: url(images/logo.png);
height: 150px;
margin: 50px 0;
width: 150px;
}
</style>
</head>
<body>
<div class="page">
<header class="page__header">
<a href="http://codeinthedark.com/" class="trp cid">Code in the Dark</a>
</header>
<main class="page__main" role="main">
<ul class="challenges">
<li class="challenges__item">
<a class="challenges__link" href="challenge1/">Challenge 1</a>
</li>
<li class="challenges__item">
<a class="challenges__link" href="challenge2/">Challenge 2</a>
</li>
<li class="challenges__item">
<a class="challenges__link" href="challenge3/">Challenge 3</a>
</li>
<li class="challenges__item">
<a class="challenges__link" href="challenge4/">Challenge 4</a>
</li>
<li class="challenges__item">
<a class="challenges__link" href="challenge5/">Challenge 5</a>
</li>
<li class="challenges__item">
<a class="challenges__link" href="challenge6/">Challenge 6</a>
</li>
<li class="challenges__item">
<a class="challenges__link" href="challenge7/">Challenge 7</a>
</li>
</ul>
</main>
<footer class="page__footer">
<a href="http://aranja.com/" class="trp aranja">Aranja</a>
</footer>
</div>
</body>
</html>