From bd4fc5cbad6facc4af5fde2b2814fd62eb13094f Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Tue, 11 Mar 2025 10:41:33 +0100 Subject: rewrite in flask done --- static/index.md | 4 +-- static/style.css | 96 +++++++++++++++++++++++++++++++++++++++++++++++++ static/styles/style.css | 96 ------------------------------------------------- 3 files changed, 98 insertions(+), 98 deletions(-) create mode 100644 static/style.css delete mode 100644 static/styles/style.css (limited to 'static') diff --git a/static/index.md b/static/index.md index 62398c7..c431a89 100644 --- a/static/index.md +++ b/static/index.md @@ -10,8 +10,8 @@ this website can encourage someone to create their own. In my spare time I like to go climbing and do some programming on various projects. Occasionally I'll go on a walk in a random place I've never been in and take pictures. Maybe I'll add a photo album sometime later. You can read -more about me [here](./about.html) +more about me [here](/thought?id=2) ## thoughts -I'll sometimes post my thoughts. You can read them [here](./thoughts.html). +I'll sometimes post my thoughts. You can read them [here](/thoughts). diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..f4b782f --- /dev/null +++ b/static/style.css @@ -0,0 +1,96 @@ +html { + background-color: #f1f1f1; + font-family: 'Open Sans', sans-serif; + font-size: small; +} + +body { + background: #f1f1f1; + margin-left: 0px; + margin-right: 0px; + margin-bottom: 0px; + position: relative; +} + +footer { + padding: 300px 10px 5px 20px; + margin-bottom: 300px; + font-size: xx-small; + align-content: center; +} + +#headerflex { + display: flex; +} + +#headers { + flex-grow: 1; +} + +header nav { + flex-grow: 1; + display: inline; +} + +header div { + padding-left: 20px; + padding-bottom: 20px; +} + +nav ul { + margin: 0; + padding: 0; +} + +nav li { + display: inline-block; + list-style-type: none; +} + +nav a { + text-decoration: none; + display: block; + padding: 5px 6px 5px 6px; + color: black; +} + +#the_title { + text-decoration: none; + color: black; +} + +#the_title h1 { + padding-left: 6px; +} + +#navbar { + text-align: left; + background-color: white; +} + +#footer_banners { + display: flex; + align-items: center; +} + +#wrapper { + background-color: #f1e7d5; + max-width: 974px; + min-width: 850px; + margin: auto; + margin-top: -10px; + padding: 30px; +} + +#thoughts_list ul { + padding-left: 12px; + line-height: 20px; +} + +#thoughts_list ul li { + list-style: none; +} + +.header_linker { + font-size: x-small; +} diff --git a/static/styles/style.css b/static/styles/style.css deleted file mode 100644 index f4b782f..0000000 --- a/static/styles/style.css +++ /dev/null @@ -1,96 +0,0 @@ -html { - background-color: #f1f1f1; - font-family: 'Open Sans', sans-serif; - font-size: small; -} - -body { - background: #f1f1f1; - margin-left: 0px; - margin-right: 0px; - margin-bottom: 0px; - position: relative; -} - -footer { - padding: 300px 10px 5px 20px; - margin-bottom: 300px; - font-size: xx-small; - align-content: center; -} - -#headerflex { - display: flex; -} - -#headers { - flex-grow: 1; -} - -header nav { - flex-grow: 1; - display: inline; -} - -header div { - padding-left: 20px; - padding-bottom: 20px; -} - -nav ul { - margin: 0; - padding: 0; -} - -nav li { - display: inline-block; - list-style-type: none; -} - -nav a { - text-decoration: none; - display: block; - padding: 5px 6px 5px 6px; - color: black; -} - -#the_title { - text-decoration: none; - color: black; -} - -#the_title h1 { - padding-left: 6px; -} - -#navbar { - text-align: left; - background-color: white; -} - -#footer_banners { - display: flex; - align-items: center; -} - -#wrapper { - background-color: #f1e7d5; - max-width: 974px; - min-width: 850px; - margin: auto; - margin-top: -10px; - padding: 30px; -} - -#thoughts_list ul { - padding-left: 12px; - line-height: 20px; -} - -#thoughts_list ul li { - list-style: none; -} - -.header_linker { - font-size: x-small; -} -- cgit v1.2.3