From 57965c763f38db0b7f48cae40169e52274a936cb Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 7 Jan 2024 22:20:55 -0500 Subject: Added specs; Modified CSS --- src/layouts/Default.astro | 2 ++ src/pages/index.astro | 37 +++++++++++++++++++++++++++++++++---- src/styles/index.css | 13 ++++++++++++- 3 files changed, 47 insertions(+), 5 deletions(-) diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro index b54dc35..7b56234 100644 --- a/src/layouts/Default.astro +++ b/src/layouts/Default.astro @@ -4,6 +4,7 @@ interface Props { } const { title } = Astro.props; +import { ViewTransitions } from 'astro:transitions'; import Navbar from '../components/Navbar.astro'; --- @@ -18,6 +19,7 @@ import Navbar from '../components/Navbar.astro'; + {title} diff --git a/src/pages/index.astro b/src/pages/index.astro index 949bae5..b68a55c 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -9,9 +9,12 @@ import '../styles/index.css';
- Andrew Lee + Andrew Lee

Hey, I'm Andrew Lee!

19 Years Old

@@ -41,6 +41,35 @@ import '../styles/index.css';

Computer Specs

+

AleePC

+
    +
  • OS: Fedora
  • +
  • CPU: AMD Ryzen 3 2200G
  • +
  • RAM: 16 GB DDR4
  • +
  • Storage: 2 TB NVME SSD, 4 TB HDD, 2 TB HDD
  • +
  • GPU: AMD Radeon RX 6600
  • +
+

Synology

+
    +
  • Model: DS918+
  • +
  • CPU: Intel Celeron J3455
  • +
  • RAM: 8 GB
  • +
  • Storage: 15 TB (3x5TB, 1x4TB)
  • +
+

Vultr (Web Server)

+
    +
  • OS: Ubuntu Server
  • +
  • CPU: Intel Xeon Processor (Skylake, IBRS)
  • +
  • RAM: 1 GB
  • +
  • Storage: 25 GB (and 50 GB for Block Storage)
  • +
+

Proxmox

+
    +
  • Model: Lenovo ThinkCentre M800
  • +
  • CPU: Intel Core i5-6500
  • +
  • RAM: 16 GB RAM
  • +
  • Storage: 500 GB SSD, 2 TB SSD
  • +

Latest Posts

diff --git a/src/styles/index.css b/src/styles/index.css index fe388ca..5c05c0b 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -21,6 +21,15 @@ h2 { font-size: 2.5vh; } +ul { + padding-left: 20px; + font-size: 1.1em; +} + +p { + font-size: 1.1em; +} + .description { line-height: 0.4; } @@ -41,11 +50,13 @@ h2 { .information { display: flex; flex-direction: column; + flex-wrap: wrap; gap: 2vh; + padding: 30px 30px 30px 30px } .box { - padding: 1vw; + padding: 2px 10px 10px 25px; text-align: left; background: #3B513B; border-radius: 20px; -- cgit v1.2.3