Update projects page

This commit is contained in:
2025-09-30 14:10:06 +03:00
parent f4fc2b98db
commit db8db452bc
2 changed files with 95 additions and 69 deletions
+27 -24
View File
@@ -1,37 +1,40 @@
.project {
display: flex;
position: relative;
min-height: 150px;
margin: 25px;
padding: 20px;
background: #575757;
border: 5px solid #9c9c9c;
border-radius: 50px;
opacity: 0;
float: left;
clear: both;
box-shadow: 10px 10px 5px rgba(0,0,0,0.5);
animation: fadeIn 1s forwards;
display: flex;
position: relative;
min-height: 150px;
min-width: 50%;
margin: 10px;
padding: 20px;
background: #575757;
border: 5px solid #9c9c9c;
border-radius: 50px;
opacity: 0;
float: left;
clear: both;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
animation: fadeIn 1s forwards;
}
.project img {
display: block;
float: left;
max-height: 100%;
width: auto;
margin-top: auto;
margin-bottom: auto;
margin-right: 15px;
display: block;
float: left;
max-height: 100%;
width: auto;
margin-top: auto;
margin-bottom: auto;
margin-right: 15px;
border-radius: 15px;
}
.project div {
float: right;
float: right;
}
.project p {
font-size: 1vw;
font-size: 1vw;
}
.project a,h1 {
color: #7db3ff;
.project a,
h1 {
color: #7db3ff;
}
+68 -45
View File
@@ -1,49 +1,72 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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="projects.css">
<link rel="icon" type="image/jpg" href="assets/favicon.jpg">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<title>Projects</title>
</head>
<body>
<div class="navbar">
<a href="/">Home</a>
<a class="active" href="projects.html">Projects</a>
<a href="https://git.enumerated.dev/">Gitea Instance</a>
</div>
<div class="project">
<div>
<img src="assets/projects/bpm.png" alt="BPM">
<div>
<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
</div>
</div>
</div>
<head>
<meta charset="UTF-8" />
<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="projects.css" />
<link rel="icon" type="image/jpg" href="assets/favicon.jpg" />
<link
href="https://fonts.googleapis.com/css?family=Roboto"
rel="stylesheet"
/>
<title>Projects</title>
</head>
<body>
<div class="navbar">
<a href="/">Home</a>
<a class="active" href="projects.html">Projects</a>
<a href="https://git.enumerated.dev/">Gitea Instance</a>
</div>
<div class="project" style="float: right;">
<div>
<img src="assets/projects/tidelinux.png" alt="Tide Linux">
<div>
<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 class="project">
<div>
<img src="assets/projects/tidelinux.png" alt="Tide Linux" />
<div>
<a href="https://git.enumerated.dev/tidelinux/">
<h1>Tide Linux</h1>
</a>
<p>Tide Linux is an independent linux distribution</p>
</div>
</div>
</div>
<div class="project">
<div>
<img src="assets/projects/stormfetch.png" alt="Stormfetch">
<div>
<a href="https://git.enumerated.dev/EnumDev/stormfetch"><h1>Stormfetch</h1></a>
<p>Stormfetch is a simple linux fetch program written in go with the ability to configure its output in bash
</div>
</div>
</div>
</body>
<div class="project" style="float: right">
<div>
<img src="assets/projects/bpm.png" alt="BPM" />
<div>
<a href="https://github.com/EnumeratedDev/bpm">
<h1>BPM</h1>
</a>
<p>The official package manager for Tide Linux</p>
</div>
</div>
</div>
<div class="project">
<div>
<img src="assets/projects/enit.png" alt="BPM" />
<div>
<a href="https://github.com/EnumeratedDev/enit">
<h1>Enit</h1>
</a>
<p>The official init system for Tide Linux</p>
</div>
</div>
</div>
<div class="project" style="float: right">
<div>
<img src="assets/projects/stormfetch.png" alt="Stormfetch" />
<div>
<a href="https://github.com/EnumeratedDev/stormfetch"
><h1>Stormfetch</h1>
</a>
<p>
Stormfetch is a simple linux fetch program written in go
</p>
</div>
</div>
</div>
</body>
</html>