-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (102 loc) · 2.53 KB
/
index.html
File metadata and controls
120 lines (102 loc) · 2.53 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body,
nav,
ul,
li {
margin: 0px;
padding: 0px;
}
body {
--maroon: #1a090d;
--violet: #4a314d;
--lavendar: #6b6570;
--green: #a8ba9a;
--apple: #ace894;
padding: 40px;
font-family: sans-serif;
color: var(--maroon);
font-size: 160%;
line-height: 1.6;
}
nav ul {
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: repeat(2, 30vh);
}
nav ul li {
display: inline-block;
display: flex;
border: 20px solid var(--maroon);
}
nav ul li:nth-of-type(3n-2) {
border-color: var(--violet);
}
nav ul li:nth-of-type(3n-1) {
border-color: var(--lavendar);
grid-row: span 2;
}
nav ul li:nth-of-type(3n) {
border-color: var(--green);
}
nav li a {
text-decoration: none;
color: #f08;
display: block;
flex: 1;
padding: 1em;
}
nav li a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Poses</h1>
<nav>
<ul>
<li>
<a href="audio.html">
🤧 🎶 Noiseinim
</a>
</li>
<li>
<a href="dots-and-lines.html">
Dots and lines
</a>
</li>
<li>
<a href="it-is-what-it-is.html">
👁👄👁 It is what it is
</a>
</li>
<li>
<a href="potato.html">
🥔 Potato
</a>
</li>
<li>
<a href="body-parts.html">
Body parts
</a>
</li>
<li>
<a href="hacky-bird.html">
🐦 Hacky Bird
</a>
</li>
<li>
<a href="drum-pose.html">
🥁 Strike a pose
</a>
</li>
</ul>
</nav>
</body>
</html>