forked from gleam-lang/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
branding.html
122 lines (110 loc) · 2.89 KB
/
branding.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
---
title: Gleam's Branding
subtitle: All pretty and pink 💖
layout: page
---
<h2>Gleam's favourite colours</h2>
<ul class="colours flat-list">
<li>
<span style="background-color: #ffaff3"></span>
<code>#ffaff3</code>
Faff Pink
</li>
<li>
<span style="background-color: #fefefc"></span>
<code>#fefefc</code>
White
</li>
<li>
<span style="background-color: #a6f0fc"></span>
<code>#a6f0fc</code>
Unnamed Blue
</li>
<li>
<span style="background-color: #fffbe8"></span>
<code>#fffbe8</code>
Aged Plastic Yellow
</li>
<li>
<span style="background-color: #584355"></span>
<code>#584355</code>
Unexpected Aubergine
</li>
<li>
<span style="background-color: #292d3e"></span>
<code>#292d3e</code>
Underwater Blue
</li>
<li>
<span style="background-color: #2f2f2f"></span>
<code>#2f2f2f</code>
Charcoal
</li>
<li>
<span style="background-color: #1e1e1e"></span>
<code>#1e1e1e</code>
Black
</li>
<li>
<span style="background-color: #151515"></span>
<code>#151515</code>
Blacker
</li>
</ul>
<h2>Lucy, Gleam's starfish mascot</h2>
<p>
Lucy is a pink starfish that can glow underwater. She's kind and nice, though
a bit clumsy sometimes. Strawberry is her favourite ice cream flavour. Lucy
has a seahorse plushie.
</p>
<h4>✨ Favourite kind of programming language?</h4>
<p>Functional ones.</p>
<h4>✨ Favourite colour?</h4>
<p>all shades of pink.</p>
<h4>✨ How clumsy as Lucy?</h4>
<p>Lucy's fine, she just gets carried away for no reason sometimes.</p>
<br />
<ul class="lucys">
<li><img src="/images/lucy/lucy.svg" alt="Lucy" /></li>
<li><img src="/images/lucy/lucyhappy.svg" alt="Lucy happy" /></li>
<li><img src="/images/lucy/lucydebugfail.svg" alt="Lucy debug fail" /></li>
<li><img src="/images/lucy/lucyglow.svg" alt="Lucy glow" /></li>
<li><img src="/images/lucy/lucymail.svg" alt="Lucy mail" /></li>
<li><img src="/images/lucy/lucynull.svg" alt="Lucy null" /></li>
<li><img src="/images/lucy/lucysleep.svg" alt="Lucy sleep" /></li>
<li><img src="/images/lucy/lucypride.svg" alt="Lucy pride" /></li>
<li><img src="/images/lucy/lucytrans.svg" alt="Lucy trans" /></li>
<li><img src="/images/lucy/lucylesbian.svg" alt="Lucy lesbian" /></li>
<li><img src="/images/lucy/lucygay.svg" alt="Lucy gay" /></li>
<li><img src="/images/lucy/lucybi.svg" alt="Lucy bi" /></li>
<li><img src="/images/lucy/lucywasm.svg" alt="Lucy Wasm" /></li>
</ul>
<style>
ul {
list-style: none;
padding: 0;
}
.colours li {
display: flex;
align-items: center;
gap: 1em;
}
.colours span {
display: inline-block;
height: 64px;
width: 64px;
}
.lucys {
display: flex;
flex-wrap: wrap;
gap: 1em;
justify-content: space-between;
}
.lucys li {
display: inline-block;
margin: 1em;
}
.lucys img {
height: 165px;
}
</style>