-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (119 loc) · 3.29 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
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
<!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="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
<title>Rainy uwu</title>
<meta content="Rainy :3" property="og:title">
<meta content="rainydevzz.github.io" property="og:site_name">
<meta name="theme-color" content="#4169e1">
<meta content="https://codeberg.org/avatars/e99784375da1a59b46a5410f57a99f89815207f2fc8e5341e8905ada279f0ac2?size=512" property='og:image'>
</head>
<body>
<main class="container">
<img src="./mimi1.png">
<h1 class="greeting">rainy</h1>
<h5 class="greeting">18yo dev, linux user, self-hoster, and gamer</h5>
<p class="bio">Hi! I love programming, OSS, watching stuff like YT, Anime, and other shows, gaming, and Linux.</p>
<br>
<p>If you're interested in getting in touch, check the links below! Most of my newer projects will probably be on Codeberg but I have a lot on Github as well.</p>
<p class="links">
<a href="https://github.com/rainydevzz">Github</a>
·
<a href="https://codeberg.org/rainy">Codeberg</a>
·
<a href="https://spacehey.com/rainyboyo">Spacehey</a>
·
<a href="https://matrix.to/#/@rainy:chat.drizzly.cloud">Matrix</a>
·
<a href="https://discord.gg/eujQrr3qhh">Discord</a>
·
<a href="https://lemmy.zip/u/rainy">Lemmy</a>
·
<a href="https://pronouns.cc/@rainyboyo">Pronouns</a>
·
<a title="spacehey blogs" href="https://blog.spacehey.com/rainyboyo">Blog</a>
</p>
<br>
<p><a href="/projects/">Projects</a></p>
<br>
<h6>(The Discord link is to a server for one of my current projects)</h6>
<h6>discord · rainy.smth</h6>
<h6>revolt · rainy#6336</h6>
<br>
<h6>art credit to crispytyph</h6>
</main>
</body>
</html>
<style>
main {
animation: fadeIn;
animation-duration: 1s;
}
footer {
text-align: center;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
margin-top: -18%;
margin-bottom: -12%;
width: 50%;
transform: scale(0.5);
transition-duration: 1s;
border-radius: 50%;
}
h1 {
margin-bottom: -6px;
}
img:hover {
transform: scale(0.55) rotate(360deg);
transition-duration: 2s;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes up {
0% { transform: translate(0, -10px); }
100% { transform: translate(0, 0px); }
}
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}
.greeting {
text-align: center;
animation: up;
animation-duration: 1s;
animation-timing-function: ease-in;
}
.greeting:hover {
background-image: linear-gradient(to right, #b58b1d, #f5f5dc);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.bio {
margin-top: -6px;
margin-bottom: -1%;
}
.links {
margin-top: -2%;
margin-bottom: -2%;
}
p {
text-align: center;
}
h6 {
font-size: small;
text-align: center;
margin-top: -2%;
}
</style>