diff --git a/dist/index.html b/dist/index.html index 7782063..e1c0cfa 100644 --- a/dist/index.html +++ b/dist/index.html @@ -8,7 +8,6 @@ src: url(/res/cascadiacode.woff2); } - body { font-family: merriweather; background-image: url("/res/grey.png"); @@ -31,6 +30,8 @@ body { } .third { + padding-left: 5px; + padding-right: 5px; flex: 30%; } @@ -118,7 +119,7 @@ h1,h2 { } -

logan's site


me

+

logan's site


me

I am a programming and philosophy enthusiast. Once upon a time i was a competitive debater on a few local and @@ -127,4 +128,4 @@ h1,h2 { get the hang of it. Currently in the process of discovering my love for hypertext and the world wide web! -

programming

projectsummary
web serverhttps server implementation
html templaterinline html templating language
fortesafety focused stack machine and assembly language
nrangecartesian product for N vectors in O(N) time/space
fishbowlkinematic image processing on the web
stocksplay money stock trading algorithm
the cryptplatforming video game in Godot

blog

\ No newline at end of file +

blog

    \ No newline at end of file diff --git a/src/main.css b/src/main.css index 99cba4a..cd232d1 100644 --- a/src/main.css +++ b/src/main.css @@ -8,7 +8,6 @@ src: url(/res/cascadiacode.woff2); } - body { font-family: merriweather; background-image: url("/res/grey.png"); @@ -31,6 +30,8 @@ body { } .third { + padding-left: 5px; + padding-right: 5px; flex: 30%; } diff --git a/src/main.rs b/src/main.rs index 9f40e23..0521e5a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -21,7 +21,6 @@ fn head() -> Markup { fn template(inner: Markup) -> Markup { html! { (DOCTYPE) - html { (head()) body { @@ -53,7 +52,7 @@ fn index() -> Markup { h1 {"logan's site"} hr; div .flex { - div .half { + div .third { h2 {"me"} " I am a programming and philosophy @@ -66,7 +65,7 @@ fn index() -> Markup { hypertext and the world wide web! " } - div .half .text_center { + div .third .text_center { h2 {"interests"} ul .twocol { li { a { "books" } } @@ -75,27 +74,11 @@ fn index() -> Markup { li { a { "websites" } } } } - - } - div .flex { - dif .half { - h2 {"programming"} - table { - tr { - th { "project" } - th { "summary" } - } - (prow("web server", "https server implementation", "2024", "")) - (prow("html templater", "inline html templating language", "2024", "")) - (prow("forte", "safety focused stack machine and assembly language", "2024", "")) - (prow("nrange", "cartesian product for N vectors in O(N) time/space", "2024", "")) - (prow("fishbowl", "kinematic image processing on the web", "2023", "")) - (prow("stocks", "play money stock trading algorithm", "2021", "")) - (prow("the crypt", "platforming video game in Godot", "2020", "")) - } - } - dif .half { + div .third { h2 {"blog"} + ul .twocol { + + } } } }