Initial commit

0fa5df7c9620da4bd0759e7e34e1b3a32516f2b1
cloudhead committed ago
README added +3 -0
1 +
This is my website. There are many like it, but this one is mine.
2 +
3 +
All content is (C) 2010-2013 Alexis Sellier
bg.png added +0 -0

Binary file changed.

index.html added +21 -0
1 +
<!doctype html>
2 +
<html lang="en">
3 +
  <head>
4 +
    <link rel="stylesheet" type="text/css" href="style.css">
5 +
    <title>cloudhead</title>
6 +
  </head>
7 +
  <body>
8 +
    <header>
9 +
      <h1>cloudhead</h1>
10 +
      <ul>
11 +
        <li><a href="http://twitter.com/cloudhead">tweets</a></li>
12 +
        <li><a href="http://github.com/cloudhead">code</a></li>
13 +
        <li><a href="http://alexissellier.com">art</a></li>
14 +
      </ul>
15 +
    </header>
16 +
    <footer>
17 +
      <a href="mailto:hello@cloudhead.io">hello@cloudhead.io</a>
18 +
      <p>&copy; 2010-2013 Alexis Sellier</p>
19 +
    </footer>
20 +
  </body>
21 +
</html>
style.css added +56 -0
1 +
* {
2 +
  margin: 0;
3 +
  padding: 0;
4 +
}
5 +
6 +
body {
7 +
  font-family: courier, monospace;
8 +
  background-image: url(bg.png);
9 +
  background-repeat: no-repeat;
10 +
  background-attachment: fixed;
11 +
  background-position: bottom center;
12 +
  padding: 10px;
13 +
}
14 +
15 +
h1 {
16 +
  font-size: 27px;
17 +
}
18 +
19 +
body > header {
20 +
  display: inline;
21 +
  text-align: right;
22 +
  float: right;
23 +
}
24 +
25 +
footer {
26 +
  text-align: right;
27 +
  position: absolute;
28 +
  bottom: 10px;
29 +
  right: 10px;
30 +
  font-size: 11px;
31 +
}
32 +
33 +
footer a {
34 +
  font-size: 17px;
35 +
}
36 +
37 +
ul, li {
38 +
  display: inline-block;
39 +
  list-style-type: none;
40 +
  background-color: white;
41 +
}
42 +
43 +
li {
44 +
  margin: 5px 0;
45 +
  font-size: 24px;
46 +
  display: block;
47 +
}
48 +
49 +
a {
50 +
  text-decoration: none;
51 +
}
52 +
53 +
a:hover:before {
54 +
  content: "> ";
55 +
}
56 +