-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
106 lines (95 loc) · 2.01 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Chalkbeat Powertoys</title>
<meta name="viewport" content="width=device-width">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600&family=IBM+Plex+Serif:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<style>
:root {
font-family: Barlow Condensed, sans-serif;
font-size: 20px;
--teal: #178287;
--light-teal: #9CD1D4;
--peach: #F79C75;
--light-peach: #F1CEBF;
--purple: #855279;
--light-purple: #B575BB;
--gold: #AC8E4C;
--yellow: #FFD373;
--blue: #1B6383;
--light-blue: #A1C8DA;
--gray: #828282;
background: var(--light-blue);
}
body {
max-width: 600px;
margin: auto;
padding: 48px 16px;
}
ul.apps {
margin: 0;
padding: 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
list-style-type: none;
}
ul.apps li {
display: block;
}
.apps a,
.apps a:visited {
color: var(--teal);
display: block;
padding: 48px 24px;
background: #EEE;
box-shadow:
0 16px 24px #0007,
0 24px 16px -16px #0003;
text-decoration: none;
text-align: center;
transition: all .3s linear,
transform .3s ease;
opacity: .5;
}
.apps a[href] {
opacity: 1;
}
.apps a[href]:hover,
.apps a[href]:focus {
background: #F8F8F8;
box-shadow:
0 19px 16px #0007,
0 32px 8px -16px #0003;
transform: translateY(-1px);
}
.apps h2 {
text-transform: uppercase;
margin: 0;
}
</style>
<ul class="apps">
<li>
<a href="./tarot/">
<h2>Tarot</h2>
social card image generator
</a>
<li>
<a href="./paraphrase/">
<h2>Paraphrase</h2>
Markdown to HTML translator
</a>
<li>
<a>
<h2>Watch this space</h2>
More tools to come!
</a>
</ul>
</body>
</html>