-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.07 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Runway23</title>
<style type="text/css">
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
body {
max-width: 900px; /* too lazy to do em shit rn i'm sorry */
padding: 1em;
font-family: 'Outfit', sans-serif;
}
span{
background: linear-gradient(23deg, #9ADBE8, #5C88DA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
span::before{
animation: animate infinite 5s;
content: "Hey!";
}
@keyframes animate{
0%{
content: "Hey!";
}
25%{
content: "Oye!";
}
50%{
content: "Ej!";
}
100%{
content: "Hoi!";
}
}
</style>
</head>
<body>
<h1><span></span> We are Runway23</h1>
<hr>
<p>Runway23 is a worker-owned engineering collective headquartered in Mexico City.</p>
</body>
</html>
<!-- this is just a placeholder i cooked up at 0130 lmao will replace with an actual proper website made in astro k thanks - leila -->