-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
123 lines (123 loc) · 3.62 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
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gratipay</title>
<style>
body {
background: #eee;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
section {
margin: 0;
padding: 0;
background: url("banner.png");
background-size: cover;
height: 33vw;
max-height: 500px;
width: 100%;
}
section * {
display: none;
position: absolute;
left: -100000px;
}
ul {
margin: 20px auto;
width: 336px;
}
li {
display: block;
border: 2px solid #333;
border-radius: 5px;
width: 128px;
height: 128px;
margin: 20px;
float: left;
}
li a {
background: white;
position: relative;
display: block;
width: 124px;
height: 124px;
padding: 10px;
border-radius: 5px;
color: #333;
text-decoration: none;
}
li a:hover {
background: #FC0;
}
li a h2 {
font: bold 20px/20px sans-serif;
}
li a img {
height: 32px;
display: block;
position: absolute;
top: 36px;
left: 10px;
}
li a span {
font: normal 9px/10px monaco, monospace;
position: absolute;
bottom: 10px;
right: 10px;
}
footer {
font: normal 10px/12px sans-serif;
clear: both;
color: #bbb;
text-align: center;
padding: 40px 0 10px;
}
footer a {
color: #bbb;
text-decoration: underline;
}
</style>
</head>
<body>
<section>
<h1>Gratipay</h1>
<p>
A pioneer in open source sustainability<br>
2012—2017<br>
RIP
</p>
</section>
<ul>
<li><a href="https://gratipay.news/">
<h2>Blog 1</h2>
<img src="blog.svg" alt="blog">
<span>gratipay.news</span>
</a></li>
<li><a href="http://blog.gittip.com/">
<h2>Blog 2</h2>
<img src="blog.svg" alt="blog">
<span>blog.gittip.com</span>
</a></li>
<li><a href="https://github.com/gratipay/">
<h2>Code</h2>
<img src="code.svg" alt="source code">
<span>github.com/gratipay</span>
</a></li>
<li><a href="https://liberapay.com/">
<h2>Fork</h2>
<img src="fork.svg" alt="code fork">
<span>liberapay.com</span>
</a></li>
</ul>
<footer>
icons cc-by
<a href="https://thenounproject.com/term/-/1430334/">blog</a>
<a href="https://thenounproject.com/term/-/1048050/">code</a>
<a href="https://thenounproject.com/term/-/1154305/">fork</a>
</footer>
</body>
</html>