-
Notifications
You must be signed in to change notification settings - Fork 2
/
gallery.html
167 lines (165 loc) · 5.35 KB
/
gallery.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Syntax Assets</title>
</head>
<body>
<div class="assets">
<div class="asset">
<h2>Syntax Cover Art.png</h2>
<a href="./Syntax Cover Art.png" download>
<img src="./Syntax Cover Art.png" alt="" />
</a>
</div>
<!--
Old Art
<div class="asset">
<h2>Syntax Logo Wide - No Background.png</h2>
<a href="./Syntax Logo Wide - No Background.png" download>
<img src="./Syntax Logo Wide - No Background.png" alt="" />
</a>
</div>
<div class="asset">
<h2>Syntax Logo Stacked - No Background- small.png</h2>
<a href="./Syntax Logo Stacked - No Background- small.png" download>
<img src="./Syntax Logo Stacked - No Background- small.png" alt="" />
</a>
</div>
<div class="asset">
<h2>Syntax Logo Stacked - No Background.png</h2>
<a href="./Syntax Logo Stacked - No Background.png" download>
<img src="./Syntax Logo Stacked - No Background.png" alt="" />
</a>
</div>
<div class="asset">
<h2>Syntax Logo Stacked - Vector.svg</h2>
<a href="./Syntax Logo Stacked - Vector.svg" download>
<img src="./Syntax Logo Stacked - Vector.svg" alt="" />
</a>
</div>
<div class="asset">
<h2>Syntax Logo Wide - Vector.svg</h2>
<a href="./Syntax Logo Wide - Vector.svg" download>
<img src="./Syntax Logo Wide - Vector.svg" alt="" />
</a>
</div> -->
<div class="asset">
<h2>Syntax Wordmark Stacked - black.svg</h2>
<a href="./Syntax Wordmark Stacked - black.svg" download>
<img src="./Syntax Wordmark Stacked - black.svg" alt="" />
</a>
</div>
<div class="asset">
<h2>Syntax Wordmark Stacked - white.svg</h2>
<a href="./Syntax Wordmark Stacked - white.svg" download>
<img src="./Syntax Wordmark Stacked - white.svg" alt="" />
</a>
</div>
<div class="asset">
<h2>Syntax Wordmark Stacked - yellow.svg</h2>
<a href="./Syntax Wordmark Stacked - yellow.svg" download>
<img src="./Syntax Wordmark Stacked - yellow.svg" alt="" />
</a>
</div>
<!-- <div class="asset">
<h2>Syntax Podcast Artwork - Wide.png</h2>
<a href="./Syntax Podcast Artwork - Wide.png" download>
<img src="./Syntax Podcast Artwork - Wide.png" alt="" />
</a>
</div>
<div class="asset">
<h2>Syntax Podcast Artwork - Stacked.png</h2>
<a href="./Syntax Podcast Artwork - Stacked.png" download>
<img src="./Syntax Podcast Artwork - Stacked.png" alt="" />
</a>
</div>
<div class="asset">
<h2>Syntax Logosmall.png</h2>
<a href="./Syntax Logosmall.png" download>
<img src="./Syntax Logosmall.png" alt="" />
</a>
</div> -->
<div class="asset">
<h2>Syntax Wordmark Wide.svg</h2>
<a href="./Syntax Wordmark Wide.svg" download>
<img src="./Syntax Wordmark Wide.svg" alt="" />
</a>
</div>
<div class="asset">
<h2>Circle Ready Avatar.png</h2>
<a href="./Circle Ready Avatar.png" download>
<img src="./Circle Ready Avatar.png" alt="" />
</a>
</div>
<div class="asset">
<h2>Syntax Wide Stacked - Textured Transparent.svg</h2>
<a href="./Syntax Wide Stacked - Textured Transparent.svg" download>
<img src="./Syntax Wide Stacked - Textured Transparent.svg" alt="" />
</a>
</div>
<div class="asset">
<h2>Syntax Wide Stacked - Textured Transparent.png</h2>
<a href="./Syntax Wide Stacked - Textured Transparent.png" download>
<img src="./Syntax Wide Stacked - Textured Transparent.png" alt="" />
</a>
</div>
<!-- <div class="asset">
<h2>Dusty Black Paper.png</h2>
<a href="./Dusty Black Paper.png" download>
<img src="./Dusty Black Paper.png" alt="" />
</a>
</div> -->
<div class="asset">
<h2>black grunge.png</h2>
<a href="./black grunge.png" download>
<img src="./black grunge.png" alt="" />
</a>
</div>
<div class="asset">
<h2>white grunge.png</h2>
<a href="./white grunge.png" download>
<img src="./white grunge.png" alt="" />
</a>
</div>
</div>
<style>
:root {
--yellow: #fabf46;
--black: #000;
--blackish: #1d1d1d;
}
body {
background: var(--black);
color: var(--yellow);
font-family: sans-serif;
}
.assets {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
grid-gap: 1rem;
padding: 1rem;
justify-content: space-around;
}
.asset {
border: 1px solid var(--yellow);
}
.asset img {
width: 100%;
height: auto;
}
.asset h2 {
text-align: center;
font-size: 12px;
background: var(--yellow);
color: black;
margin: 0;
padding: 10px 2px;
}
.asset:has(img[src*="black"]) {
background: white;
}
</style>
</body>
</html>