-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
153 lines (131 loc) · 4.51 KB
/
about.html
File metadata and controls
153 lines (131 loc) · 4.51 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
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
<!-- https://lospec.com/palette-list/neo-5 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="theme.css">
<title>goop tech !!</title>
<style>
body {
/* background-color: #effafa; */
background-color: #0e0e0e;
color: #e624af;
font-family: 'typecast'; /* 'typecast' font is cool but only when the pixels line up perfectly :( */
font-size: 1.2em;
/* text-align: center; */
}
h1 {
color: #e624af;
font-family: 'glass';
font-size: 8em;
font-weight: bolder;
font-style: italic;
}
img {
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
a {
color: #e624af;
/* background-color: #e624af; */
/* color: #0e0e0e; */
/* font-weight: bold; */
/* font-style: italic; */
text-decoration: none;
/* display: inline-block; */
/* padding: 0 .5ch; */
/* border-radius: .2em; */
}
a:hover {
background-color: #effafa;
color: #e624af;
}
a::before { content: "["; }
a::after { content: "]"; }
header {
text-align: center;
margin-bottom: 8em;
}
main {
display: flex;
flex-flow: row wrap;
flex: 0 0;
align-items: center;
justify-content: center;
gap: 2em;
}
.profile {
border: .1em solid #e624af;
border-radius: .2em;
padding: 1em;
width: 42ch;
aspect-ratio: 4/3;
h2 {
font-size: 2em;
text-align: center;
}
ul {
list-style-position: outside;
list-style-type: '♥ ';
margin-left: 2ch;
}
}
footer {
background-color: #e624af;
color: #0e0e0e;
}
nav {
text-align: center;
}
</style>
</head>
<body>
<header>
<!-- <img src="render.png"> -->
<h1>
<span style="color: #ff50ff;">g</span><span style="color: #ffff3f;">o</span><span style="color: #7fffff;">o</span><span style="color: #f03c79;">p</span>
<span style="color: #7fff00;">t</span><span style="color: #2121ff;">e</span><span style="color: #ff50ff;">c</span><span style="color: #ffff3f;">h</span>
<span style="color: #7fffff;">!</span><span style="color: #f03c79;">!</span>
</h1>
<nav>
░░░▒▒▒▓▓▓
<a href="index.html">an internet collective</a>
▓▓▓▒▒▒░░░
</nav>
</header>
<main>
<section class="profile">
<h2>flwrstems</h2>
<ul>
<li>she/her</li>
<li>longboarding >>> making art with computers >>></li>
<li><a href="https://flwrstems.mooo.com">site</a></li>
</ul>
</section>
<section class="profile">
<h2>dawn</h2>
<ul>
<li>she/her</li>
<li>haiii! i like cats and rain and tea</li>
<li><a href="https://dawnvoid.neocities.org/">site</a></li>
</ul>
</section>
<section class="profile">
<h2>frankie</h2>
<ul>
<li>she/her</li>
<li>hosting this website with love</li>
<li><a href="status.html">status!</a></li>
<img src="media/frankie.gif">
</ul>
</section>
</main>
<!-- <footer>
(c) your'ue mom 2025 —
trans rights <3
</footer> -->
</body>
</html>