From: Arthur Taft Date: Fri, 21 Nov 2025 09:08:03 +0000 (-0700) Subject: add html pages X-Git-Url: https://gitweb.arthurtaft.net/website.git/commitdiff_plain/6c1d96e1ef6fb88cfdef0f8c9056f4834321141f?ds=sidebyside;hp=5ee3684ee0679d3c6ac6c3a4e35e549ea299553d add html pages --- diff --git a/README.md b/README.md index 4e1e5d7..3c03ff7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # Personal Website This is all of the code for my personal website :) + +Inspired by YSAP diff --git a/static/about.html b/static/about.html new file mode 100644 index 0000000..7ac9ce9 --- /dev/null +++ b/static/about.html @@ -0,0 +1,33 @@ + + + + + + + about | arthurtaft.net + + + + +
+
+ +
+
+

arthurtaft.net

+
+
+

I love Gentoo Linux

+
+
+ + diff --git a/static/blog.html b/static/blog.html new file mode 100644 index 0000000..71ab32c --- /dev/null +++ b/static/blog.html @@ -0,0 +1,33 @@ + + + + + + + blog | arthurtaft.net + + + + +
+
+ +
+
+

arthurtaft.net

+
+
+

I love Gentoo Linux

+
+
+ + diff --git a/static/contact.html b/static/contact.html new file mode 100644 index 0000000..117d3e0 --- /dev/null +++ b/static/contact.html @@ -0,0 +1,33 @@ + + + + + + + contact | arthurtaft.net + + + + +
+
+ +
+
+

arthurtaft.net

+
+
+

I love Gentoo Linux

+
+
+ + diff --git a/static/index.html b/static/index.html index 3f4887a..c8667fc 100644 --- a/static/index.html +++ b/static/index.html @@ -1,23 +1,32 @@ + + + - home | arthurtaft.EXT + home | arthurtaft.net
+
+

arthurtaft.net

+
-

Bazinga

+

I love Gentoo Linux

diff --git a/static/resume.html b/static/resume.html new file mode 100644 index 0000000..8510c06 --- /dev/null +++ b/static/resume.html @@ -0,0 +1,33 @@ + + + + + + + resume | arthurtaft.net + + + + +
+
+ +
+
+

arthurtaft.net

+
+
+

I love Gentoo Linux

+
+
+ + diff --git a/static/styles.css b/static/styles.css index 6512132..30d16d7 100644 --- a/static/styles.css +++ b/static/styles.css @@ -1,3 +1,8 @@ +/* + * styles.css + * Copyright (c) 2025 Arthur Taft. All Rights Reserved. +*/ + :root { /* COLORS */ --rosewater: #f5e0dc; @@ -29,11 +34,12 @@ } /* Style Reset */ -html, main, body, ul, h1, h2, p { +* { padding: 0; margin: 0; } +/* Set width so things actually fit */ html { background-color: var(--base); display: flex; @@ -45,31 +51,74 @@ body { width: 100%; } +/* Main page content */ #main-cont { display: flex; flex-direction: column; - align-items: start; + align-items: center; } +/* Navbar rules */ #top-nav { + display: flex; + flex-direction row; margin-bottom: 1%; - align-self: center; - width: 30%; + margin-left: 25%; + margin-right: 25%; } -#top-nav ul { +#top-nav .nav-title { + margin-right: 5rem; +} + +#top-nav .nav-list { list-style-type: none; display: flex; flex-flow: row wrap; justify-content: space-between; } -h1 { +#top-nav .nav-item { +} + +#top-nav .nav-link { + display: block; + padding: 0.5rem 1rem; +} + +#top-nav .nav-link:hover { + background-color: var(--surface-1); +} + +/* Title rules */ +#title-div { + align-self: start; + display: flex; + flex-direction: row; + align-items: start; + margin-left: 25%; + margin-bottom: 1%; +} + +#title-div .page-title { color: var(--green); } +/* Misc container rules (anything goes here) */ +#container { + display: flex; + flex-direction: column; + align-items: center; +} + +#container .main-header { + color: var(--lavender); +} + +/* Link rules that enforce theme */ a { font-size: 1.25rem; + text-decoration: none; } a:link { @@ -79,8 +128,3 @@ a:link { a:visited { color: var(--blue); } - -a:hover { - color: var(--peach); - text-decoration: none; -}