-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.html
71 lines (62 loc) · 1.92 KB
/
links.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Links for 2023</title>
<style>
:root {
--c-fg: #d4af37;
--c-bg: #000;
}
html {
background-color: var(--c-bg);
color: white;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
h1 {
text-align: center;
font-size: 10vw;
margin-bottom: 0px;
}
ul,
li {
list-style: none;
margin: 0;
padding: 0;
}
a {
margin: 48px 20px;
display: block;
background: var(--c-fg);
color: var(--c-bg);
text-transform: uppercase;
text-align: center;
font-weight: bold;
box-shadow: 4px 0 0 black, 8px 8px 0 0 #ffdc00;
padding: 24px;
box-shadow: 4px 4px 0 0 black, 8px 8px 0 0 #ffdc00;
}
a:hover {
background-color: #ffdc00;
}
</style>
</head>
<body>
<h1>LINKS!</h1>
<ul>
<li>
<a href="mailto:[email protected]?subject=Sponsorship enquiry">sponsor us next year so you don't have to see
this
stupid page</a>
</li>
<li><a href="https://ffconf.org/game">2022 game boy game</a></li>
<li><a href="https://buytickets.at/ffconf2023/1060395/share/d25009b59b119e3c0ed856f4b7bf7965">Buy an ffconf 2024
ticket (limited!)</a></li>
<li><a href="mailto:[email protected]?subhect=Event enquiry">hire Julie for your event</a></li>
<li><a href="https://ffconf.org/playlist">the ffconf playlist</a></li>
<li><a href="https://twitter.com/lrnrd/status/662659843455586304">Remy's attempt at "dancing" to fill a tech
failure void in 2015</a></li>
</ul>
</body>
</html>