Compare commits

..
8 Commits
Author SHA1 Message Date
EnumDev 0b79f2d21e Fix projects page scaling 2026-04-27 21:51:11 +03:00
EnumDev 7e051cee8e Add enit logo 2025-09-30 14:21:03 +03:00
EnumDev db8db452bc Update projects page 2025-09-30 14:10:06 +03:00
EnumDev f4fc2b98db Fix github link 2025-06-14 18:42:18 +03:00
EnumDev 67eca9f682 Move project icons to subdirectory 2025-03-27 22:05:33 +02:00
EnumDev c3a2d58324 Improve main page info div layout 2025-03-27 22:03:21 +02:00
EnumDev 6824a1d110 Move social media logos to subdirectory 2025-03-27 21:46:11 +02:00
EnumDev d91c55685d Add bluesky and x/twitter links 2025-03-27 21:44:56 +02:00
14 changed files with 119 additions and 78 deletions

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

+9 -1
View File
@@ -26,7 +26,15 @@
animation: fadeIn 1s linear 1.25s forwards; animation: fadeIn 1s linear 1.25s forwards;
} }
.link img { #bio {
margin-bottom: 20px;
}
#socials {
margin-top: 20px;
}
.social-link img {
width: 32px; width: 32px;
height: 32px; height: 32px;
} }
+11 -5
View File
@@ -12,18 +12,24 @@
<body> <body>
<div class="navbar"> <div class="navbar">
<a class="active" href="/">Home</a> <a class="active" href="/">Home</a>
<a href="projects.html">Projects</a> <a href="projects">Projects</a>
<a href="https://git.enumerated.dev/">Gitea Instance</a> <a href="https://git.enumerated.dev/">Gitea Instance</a>
</div> </div>
<div id="main"> <div id="main">
<img id="pfp" src="assets/pfp.jpg" alt="Profile Picture"> <img id="pfp" src="assets/pfp.jpg" alt="Profile Picture">
<div id="info"> <div id="info">
<div id="bio">
<h1>EnumDev</h1> <h1>EnumDev</h1>
<span>Computer programmer and Linux enthusiast</span> <span>Computer programmer and Linux enthusiast</span>
<br><br> </div>
<a class="link" href="https://git.enumerated.dev/EnumDev"><img src="assets/gitea-logo.png" alt="Gitea"></a> <hr>
<a class="link" href="https://gitlab.com/EnumDev"><img src="assets/gitlab-logo.png" alt="Gitlab"></a> <div id="socials">
<a class="link" href="https://github.com/EnumuratedDev"><img src="assets/github-logo.png" alt="Github"></a> <a class="social-link" href="https://git.enumerated.dev/EnumDev"><img src="assets/socials/gitea-logo.png" alt="Gitea"></a>
<a class="social-link" href="https://gitlab.com/EnumDev"><img src="assets/socials/gitlab-logo.png" alt="Gitlab"></a>
<a class="social-link" href="https://github.com/EnumeratedDev"><img src="assets/socials/github-logo.png" alt="Github"></a>
<a class="social-link" href="https://bsky.app/profile/enumerated.dev"><img src="assets/socials/bsky-logo.png" alt="BlueSky"></a>
<a class="social-link" href="https://x.com/EnumDev_"><img src="assets/socials/x-logo.png" alt="X/Twitter"></a>
</div>
</div> </div>
</div> </div>
</body> </body>
+21 -6
View File
@@ -1,8 +1,9 @@
.project { .project {
display: flex; display: flex;
position: relative; position: relative;
min-height: 150px; min-height: 5vh;
margin: 25px; min-width: 50%;
margin: 10px;
padding: 20px; padding: 20px;
background: #575757; background: #575757;
border: 5px solid #9c9c9c; border: 5px solid #9c9c9c;
@@ -17,11 +18,12 @@
.project img { .project img {
display: block; display: block;
float: left; float: left;
max-height: 100%; height: 10%;
width: auto; width: 10%;
margin-top: auto; margin-top: auto;
margin-bottom: auto; margin-bottom: auto;
margin-right: 15px; margin-right: 15px;
border-radius: 15px;
} }
.project div { .project div {
@@ -29,9 +31,22 @@
} }
.project p { .project p {
font-size: 1vw; font-size: 2vh;
} }
.project a,h1 { .project a {
font-size: 4vh;
color: #7db3ff; color: #7db3ff;
} }
@media only screen and (orientation: portrait) {
.projects {
display: grid;
column-count: 1;
}
.projects img {
height: auto !important;
width: 20% !important;
}
}
+34 -22
View File
@@ -1,47 +1,59 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link type="text/css" rel="stylesheet" href="style.css"> <link type="text/css" rel="stylesheet" href="style.css" />
<link type="text/css" rel="stylesheet" href="projects.css"> <link type="text/css" rel="stylesheet" href="projects.css" />
<link rel="icon" type="image/jpg" href="assets/favicon.jpg"> <link rel="icon" type="image/jpg" href="assets/favicon.jpg" />
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'> <link
href="https://fonts.googleapis.com/css?family=Roboto"
rel="stylesheet"
/>
<title>Projects</title> <title>Projects</title>
</head> </head>
<body> <body>
<div class="navbar"> <div class="navbar">
<a href="/">Home</a> <a href="/">Home</a>
<a class="active" href="projects.html">Projects</a> <a class="active" href="projects">Projects</a>
<a href="https://git.enumerated.dev/">Gitea Instance</a> <a href="https://git.enumerated.dev/">Gitea Instance</a>
</div> </div>
<div class="projects">
<div class="project"> <div class="project">
<img src="assets/projects/tidelinux.png" alt="Tide Linux" />
<div> <div>
<img src="assets/bpm.png" alt="BPM"> <a href="https://git.enumerated.dev/tidelinux/"
<div> >Tide Linux</a
<a href="https://git.enumerated.dev/bubble-package-manager/bpm"><h1>Bubble Package Manager - BPM</h1></a> >
<p>The Bubble Package manager is a simple package manager for linux systems primarily designed for the Tide Linux distribution <p>Tide Linux is an independent linux distribution</p>
</div>
</div> </div>
</div> </div>
<div class="project" style="float: right;"> <div class="project" style="float: right">
<img src="assets/projects/bpm.png" alt="BPM" />
<div> <div>
<img src="assets/tidelinux.png" alt="Tide Linux"> <a href="https://github.com/EnumeratedDev/bpm">BPM</a>
<div> <p>The official package manager for Tide Linux</p>
<a href="https://gitlab.com/tidelinux"><h1>Tide Linux</h1></a>
<p>Tide Linux is an independent linux distribution utilizing BPM as its package manager
</div>
</div> </div>
</div> </div>
<div class="project"> <div class="project">
<img src="assets/projects/enit.png" alt="BPM" />
<div> <div>
<img src="assets/stormfetch.png" alt="Stormfetch"> <a href="https://github.com/EnumeratedDev/enit">Enit</a>
<p>The official init system for Tide Linux</p>
</div>
</div>
<div class="project" style="float: right">
<img src="assets/projects/stormfetch.png" alt="Stormfetch" />
<div> <div>
<a href="https://git.enumerated.dev/EnumDev/stormfetch"><h1>Stormfetch</h1></a> <a href="https://github.com/EnumeratedDev/stormfetch">Stormfetch</a>
<p>Stormfetch is a simple linux fetch program written in go with the ability to configure its output in bash </a>
<p>
Stormfetch is a simple linux fetch program written in go
</p>
</div> </div>
</div> </div>
</div> </div>