-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (66 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>winblues</title>
<style>
body {
background-color: #000033;
color: #00FFCC;
font-family: sans-serif;
text-align: center;
}
h1 {
font-size: 36px;
text-shadow: 2px 2px 5px #FF00FF;
}
.marquee {
font-size: 20px;
font-weight: bold;
color: yellow;
}
.content {
margin-top: 20px;
border: 2px dashed cyan;
padding: 20px;
display: inline-block;
background-color: rgba(0, 0, 0, 0.5);
}
img {
border: 3px solid white;
background-color: black;
padding: 10px;
}
.footer {
margin-top: 30px;
font-size: 14px;
color: #FFAA00;
}
a {
color: #FFD700;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #FF4500;
text-decoration: underline;
}
</style>
</head>
<body>
<!--<marquee class="marquee">✨🌙 welcome to winblues at <a href="https://blues.win">blues.win</a> 🌙✨</marquee>-->
<h1>winblues</h1>
<div class="content">
<img src="night.png" alt="Retro Moon and Stars">
<p>fedora atomic desktop images with an old-school feel</p>
</div>
<h2>🌙🔮✨ projects ✨🔮🌙</h2>
<p><a href="https://github.com/winblues/blue95" target="_blank">💾 blue95</a> - a modern and lightweight linux desktop reminiscent of a bygone era of computing</p>
<p><a href="https://github.com/winblues/vauxite" target="_blank">🐀 vauxite</a> - fedora xfce atomic with batteries included</p>
<p><a href="https://github.com/winblues/bluexp" target="_blank">🔵 bluexp</a> - a blissful playground</p>
<div class="footer">
<p>© 2025 <a href="https://github.com/winblues">winblues</a></p>
</div>
</body>
</html>