-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (72 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" id="viewport">
<title>disconomics</title>
<style>
body {
margin: 0;
padding: 0;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 40%;
padding-left: 55px
}
footer {
position: absolute;
bottom: 0;
width: 100%;
}
/* mostly taken by https://codepen.io/julesforrest/pen/qLpgNB */
ul {
display: inline-grid;
grid-auto-flow: row;
grid-gap: 24px;
justify-items: center;
margin: auto;
}
@media (min-width: 800px) {
ul {
grid-auto-flow: column;
}
}
a {
color: white;
text-decoration: none;
box-shadow: inset 0 -1px 0 hsla(0, 0%, 100%, 0.4);
}
a:hover {
box-shadow: inset 0 -1.2em 0 hsla(0, 0%, 100%, 0.4);
}
li:last-child {
grid-column: 1 / 2;
grid-row: 1 / 2;
}
div {
padding: 50px;
display: flex;
flex: 0 0 100%;
background-color: #000;
font-size: x-large;
line-height: 2;
font-family: monospace;
}
</style>
</head>
<body>
<img src="logo.png" class="center"/>
<footer>
<div>
<ul>
<li><a href="https://cism893.ca/emissions/disconomique/">CISM disconomique</a></li>
<li><a href="https://www.mixcloud.com/disconomics">Mixcloud archives</a></li>
<li><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</div>
</footer>
</body>
</html>