fix hw page
This commit is contained in:
parent
413865f90e
commit
a068347aa9
1 changed files with 10 additions and 74 deletions
84
hw.html
84
hw.html
|
@ -1,4 +1,8 @@
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<link rel="stylesheet" href="global.css" />
|
||||||
|
</head>
|
||||||
<div id="flex-container">
|
<div id="flex-container">
|
||||||
<div id="main-flex">
|
<div id="main-flex">
|
||||||
<h1 style="text-align: center;">hex's hardware</h1>
|
<h1 style="text-align: center;">hex's hardware</h1>
|
||||||
|
@ -14,7 +18,7 @@
|
||||||
<img src="img/latitude-1.png">
|
<img src="img/latitude-1.png">
|
||||||
<img src="img/latitude-2.png">
|
<img src="img/latitude-2.png">
|
||||||
<p>My librebooted Dell Latitude E5420</p>
|
<p>My librebooted Dell Latitude E5420</p>
|
||||||
<b>Price: </b>Got it for free! But goes for around 20-30,- EUR usually.
|
<b>Price: </b>Got it for free! But goes for around 20-30,- EUR usually.
|
||||||
<p>i5-2540M, with 8 gigs of RAM running Devuan Linux + XFCE.</p>
|
<p>i5-2540M, with 8 gigs of RAM running Devuan Linux + XFCE.</p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
@ -30,10 +34,12 @@
|
||||||
<p>My homelab, featuring:</p>
|
<p>My homelab, featuring:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>A Mikrotik CCR1009-8G-1S switch/router which I got for free.</li>
|
<li>A Mikrotik CCR1009-8G-1S switch/router which I got for free.</li>
|
||||||
<li>Two librebooted Optiplex 3050 Micro's, which I got for 60$ total. Missing the PSU for one of them though.</li>
|
<li>Two librebooted Optiplex 3050 Micro's, which I got for 60$ total. They are currently running OpenSUSE MicroOS</li>
|
||||||
<li>A Linksys EA6500 running DD-WRT for wifi in my room (which I want to replace with a OpenWRT One).</li>
|
<li>A Linksys EA6500 running DD-WRT for wifi in my room (which I want to replace with a OpenWRT
|
||||||
|
One).</li>
|
||||||
<li>My old custom build from 2020.</li>
|
<li>My old custom build from 2020.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<p>I am planning to replace my access point & switch/router with a Dell Optiplex 3050 SFF. I'll probably just throw a couple of network cards and a wifi card in there and run OPNSense or PFSense or whatever on it.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -42,82 +48,12 @@
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@font-face {
|
|
||||||
font-family: heartFont;
|
|
||||||
src: url("ttf/rainyhearts.ttf");
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 14vw;
|
width: 14vw;
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
img:hover {
|
img:hover {
|
||||||
width: 25vw;
|
width: 25vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes rainbow_anim {
|
|
||||||
|
|
||||||
0%,
|
|
||||||
100% {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
50% {
|
|
||||||
background-position: 100% 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes border_amim {
|
|
||||||
|
|
||||||
0%,
|
|
||||||
100% {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
50% {
|
|
||||||
background-position: 100% 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
border: 1px solid white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rainbow-text {
|
|
||||||
text-align: center;
|
|
||||||
background: linear-gradient(to right, #6666ff, #0099ff, #00ff00, #ff3399, #6666ff);
|
|
||||||
background-clip: text;
|
|
||||||
color: transparent !important;
|
|
||||||
animation: rainbow_anim 15s ease-in-out infinite;
|
|
||||||
background-size: 400% 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-box {
|
|
||||||
display: inline-grid;
|
|
||||||
grid-template-columns: 40vw 40vw;
|
|
||||||
grid-auto-flow: row;
|
|
||||||
grid-gap: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-flex {
|
|
||||||
padding: 30px;
|
|
||||||
border: 3px solid white;
|
|
||||||
border-radius: 10px;
|
|
||||||
box-shadow: 0px 0px 20px white;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
#flex-container {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: heartFont;
|
|
||||||
font-weight: 800;
|
|
||||||
font-size: 23px;
|
|
||||||
background-color: black;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue