fix hw page
This commit is contained in:
parent
413865f90e
commit
a068347aa9
1 changed files with 10 additions and 74 deletions
82
hw.html
82
hw.html
|
@ -1,4 +1,8 @@
|
|||
<html>
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="global.css" />
|
||||
</head>
|
||||
<div id="flex-container">
|
||||
<div id="main-flex">
|
||||
<h1 style="text-align: center;">hex's hardware</h1>
|
||||
|
@ -30,10 +34,12 @@
|
|||
<p>My homelab, featuring:</p>
|
||||
<ul>
|
||||
<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>A Linksys EA6500 running DD-WRT for wifi in my room (which I want to replace with a OpenWRT One).</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>My old custom build from 2020.</li>
|
||||
</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>
|
||||
|
@ -42,82 +48,12 @@
|
|||
</html>
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: heartFont;
|
||||
src: url("ttf/rainyhearts.ttf");
|
||||
}
|
||||
|
||||
img {
|
||||
width: 14vw;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
img:hover {
|
||||
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>
|
||||
|
|
Loading…
Reference in a new issue