-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (92 loc) · 3.14 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
<!--
TODO: css in another file
TODO: make text smaller on small devices
-->
<html>
<head>
<style>
body {
background-color: #5b5c56;
}
#main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#cat_cig {
width: 25rem;
height: 25rem;
border: 2px solid #080b02;
}
#title {
color: #989c8b;
font-size: 3rem;
font-weight: bold;
text-shadow: 2px 0 #080b02, -2px 0 #080b02, 0 2px #080b02, 0 -2px #080b02,
1px 1px #080b02, -1px -1px #080b02, 1px -1px #080b02, -1px 1px #080b02;
}
#my_links > * {
color: #989c8b;
}
#nixring > * {
color: #989c8b;
}
#about {
margin: 2rem 8rem 2rem 8rem;
max-width: 50rem;
color: #adafa7;
text-align: center;
font: 1.5rem Verdana, serif;
}
#subpage_link > * {
margin: 2rem 1rem 2rem 1rem;
max-width: 50rem;
color: #adafa7;
text-align: center;
font: 1.5rem Verdana, serif;
}
#gif_small {
margin: 1rem;
width: 88px;
height: 32px;
}
#gifs {
margin: 2rem 8rem 2rem;
}
#footer {
margin: 2rem 8rem 2rem;
display: flex;
flex-direction: column;
align-items: center;
}
</style>
</head>
<body>
<div id="main">
<div id="title">emo mruczek</div>
<img id="cat_cig" src="./cat1.jpg" alt="cat with a cig"/>
<div id="about"></br>Currently in my sad gay era.</br> </div>
<div id="subpage_link">
<a href="about.html">About</a>
<a href="friends.html">Friends</a>
</div>
<div id="footer">
<div id="my_links">
<a href="https://github.com/emo-mruczek">My github</a>
<a href="https://myanimelist.net/profile/Krokcia">My MAL</a>
<a>My cv (not there yet...)</a>
</div>
<div id="nixring">
<a href="https://nixwebr.ing/prev/emo-mruczek"><<</a>
<a href="https://nixwebr.ing">Nix WebRing</a>
<a href="https://nixwebr.ing/next/emo-mruczek">>></a>
</div>
<div id="gifs">
<a href="https://neonaut.neocities.org/cyber/88x31"><img id="gif_small" src="./assets/88by31.gif" alt="88by31"></a>
<a href="https://tranzycja.pl"><img id="gif_small" src="./assets/transnow2.gif" alt="trans rights now!"></a>
</div>
</div>
</div>
</body>
</html>