forked from wonderfulsoftware/webring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logo.html
36 lines (36 loc) · 770 Bytes
/
logo.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
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
background: white;
color: #353435;
padding: 24px;
}
.logo {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 20px;
}
.logo > div {
padding: 24px;
}
.logo img {
width: 256px;
}
</style>
<body style="background: white; text-align: center">
<div class="logo">
<div>
<img src="webring.svg" />
</div>
<div style="background: black">
<img src="webring.white.svg" />
</div>
<div>
<img src="webring.black.svg" />
</div>
</div>
(Feel free to change the colors)
</body>