-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (53 loc) · 2.77 KB
/
index.html
File metadata and controls
55 lines (53 loc) · 2.77 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- discord embed -->
<meta property="og:title" content="Linux Distro List Chooser skibidi rizz" />
<meta property="og:description" content="Find the Linux distro for YOU" />
<meta property="og:image" content="https://i.imgur.com/505Nmkr.png" />
<meta property="og:url" content="https://linuxdistros.vercel.app" />
<meta property="og:type" content="website" />
<link rel="icon" href="https://i.imgur.com/sPxq6s5.png" type="image/png">
<!-- twitter (NOT X) embed u STUPID elon -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Linux Distro List Chooser skibidi rizz" />
<meta name="twitter:description" content="Find the Linux distro for YOU" />
<meta name="twitter:image" content="https://i.imgur.com/505Nmkr.png" />
<meta name="twitter:url" content="https://linuxdistros.vercel.app" />
<meta name="twitter:site" content="@LoolyTunes" />
<title>Linux Distros</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<div class="distros-container">
<h1>Linux Distributions</h1>
<p class="subtitle">Discover the perfect Linux distro for your needs</p>
<div class="distro-grid" id="distroGrid">
</div>
</div>
<div style="position: fixed; bottom: 20px; right: 20px; z-index: 1000;">
<a href="https://tunes.is-a.dev" target="_blank" style="text-decoration: none;">
<button style="
background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #1e3a8a 50%, #073e96 75%, #025272 100%);
color: white;
border: none;
border-radius: 30px;
padding: 12px 20px;
font-size: 14px;
font-weight: bold;
cursor: pointer;
box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3), 0 0 25px rgba(59, 130, 246, 0.2);
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
" onmouseover="this.style.transform='translateY(-2px)'; this.style.boxShadow='0 6px 20px rgba(30, 58, 138, 0.5), 0 0 35px rgba(59, 130, 246, 0.3)'" onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 15px rgba(30, 58, 138, 0.3), 0 0 25px rgba(59, 130, 246, 0.2)'">
My socials and projects
</button>
</a>
</div>
</body>
</html>