From a2c4acf6eea9a2e376ae8daaf225c744506c936a Mon Sep 17 00:00:00 2001 From: Daniel Hader Date: Thu, 3 Sep 2026 20:37:45 -0500 Subject: font cleanup and css work --- themes/simple/static/css/main.css | 66 ++++++++++++--------- .../simple/static/fonts/aerial_2/Aerial_Demo.ttf | Bin 33488 -> 0 bytes .../static/fonts/babel_sans/BabelSans-Bold.ttf | Bin 49356 -> 0 bytes .../fonts/babel_sans/BabelSans-BoldOblique.ttf | Bin 54488 -> 0 bytes .../static/fonts/babel_sans/BabelSans-Oblique.ttf | Bin 50516 -> 0 bytes .../simple/static/fonts/babel_sans/BabelSans.ttf | Bin 56936 -> 0 bytes .../static/fonts/canela/canela-Bold-TRIAL.otf | Bin 16832 -> 0 bytes .../static/fonts/canela/canela-Light-TRIAL.otf | Bin 16556 -> 0 bytes .../static/fonts/canela/canela-Regular-TRIAL.otf | Bin 15476 -> 0 bytes themes/simple/static/fonts/gocake/Gocake.jpg | Bin 385098 -> 0 bytes themes/simple/static/fonts/gocake/Gocake.otf | Bin 38100 -> 0 bytes themes/simple/static/fonts/gocake/Gocake.ttf | Bin 54132 -> 0 bytes themes/simple/static/fonts/gocake/More Info.txt | 24 -------- themes/simple/static/fonts/gocake/Read Me.pdf | Bin 536273 -> 0 bytes themes/simple/static/fonts/hockey.ttf | Bin 0 -> 46560 bytes themes/simple/static/fonts/ltstreak.ttf | Bin 0 -> 112728 bytes themes/simple/templates/base.html | 16 ++--- 17 files changed, 45 insertions(+), 61 deletions(-) delete mode 100644 themes/simple/static/fonts/aerial_2/Aerial_Demo.ttf delete mode 100644 themes/simple/static/fonts/babel_sans/BabelSans-Bold.ttf delete mode 100644 themes/simple/static/fonts/babel_sans/BabelSans-BoldOblique.ttf delete mode 100644 themes/simple/static/fonts/babel_sans/BabelSans-Oblique.ttf delete mode 100644 themes/simple/static/fonts/babel_sans/BabelSans.ttf delete mode 100644 themes/simple/static/fonts/canela/canela-Bold-TRIAL.otf delete mode 100644 themes/simple/static/fonts/canela/canela-Light-TRIAL.otf delete mode 100644 themes/simple/static/fonts/canela/canela-Regular-TRIAL.otf delete mode 100644 themes/simple/static/fonts/gocake/Gocake.jpg delete mode 100644 themes/simple/static/fonts/gocake/Gocake.otf delete mode 100644 themes/simple/static/fonts/gocake/Gocake.ttf delete mode 100644 themes/simple/static/fonts/gocake/More Info.txt delete mode 100644 themes/simple/static/fonts/gocake/Read Me.pdf create mode 100644 themes/simple/static/fonts/hockey.ttf create mode 100644 themes/simple/static/fonts/ltstreak.ttf (limited to 'themes/simple') diff --git a/themes/simple/static/css/main.css b/themes/simple/static/css/main.css index 4c76d55..0dbbf87 100644 --- a/themes/simple/static/css/main.css +++ b/themes/simple/static/css/main.css @@ -1,23 +1,13 @@ @import url("reset.css"); @font-face { - font-family: Gocake; - src: url("../fonts/gocake/Gocake.ttf"); + font-family: Hockey-is-lif; + src: url("../fonts/hockey.ttf"); } @font-face { - font-family: Canela; - src: url("../fonts/canela/canela-Regular-TRIAL.otf"); -} - -@font-face { - font-family: Babel-Sans; - src: url("../fonts/babel_sans/BabelSans.ttf"); -} - -@font-face { - font-family: Aerial; - src: url("../fonts/aerial_2/Aerial_Demo.ttf"); + font-family: LT-Streak; + src: url("../fonts/ltstreak.ttf"); } body { @@ -29,7 +19,8 @@ body { background-position: center; background-attachment: fixed; - font-family: "Aerial"; + font-family: "LT-Streak"; + font-size: 14pt; line-height: 1.2; color: #aabbaf; @@ -51,18 +42,19 @@ h1 { #header { position: relative; - background-color: rgba(20, 20, 20, 1.0); background: linear-gradient( 180deg, rgba(72, 72, 72, 0.9) 0%, rgba(20, 20, 20, 0.95) 100% ); - border-top: 1px solid #9e9e9e; - border-left: 1px solid #9e9e9e; - border-right: 1px solid #9e9e9e; + border-top: 1px solid rgb(100, 100, 100); + border-left: 1px solid rgb(60, 60, 60); + border-right: 1px solid rgb(50, 50, 50); + border-bottom: 1px solid rgb(0, 0, 0); border-radius: 30px 30px 0 0; - + + box-shadow: 0px 8px 10px rgba(20, 20, 20, 0.5); } #header hgroup { @@ -84,23 +76,25 @@ h1 { border-radius: 30px 30px 30px 30px; } -#content { +#nav-content { display: flex; + flex-direction: row; +} + +aside { + border-top: 1px solid #666666; + border-left: 1px solid #666666; + border-right: 1px solid #666666; + background: rgba(30, 30, 30, 0.4); } #navs { display: flex; flex-direction: column; - width: 150px; + margin: 10px 8px 10px 8px; height: 100%; - padding: 10px 8px 10px 8px; - - border-top: 1px solid #666666; - border-left: 1px solid #666666; - border-right: 1px solid #666666; - background: rgba(30, 30, 30, 0.4); - /*background: linear-gradient(to bottom,rgba(80,80,80,.2),rgba(39,39,39,.1));*/ + width: 150px; } .nav { @@ -169,3 +163,17 @@ h1 { position: relative; } +main { + background: rgba(30, 30, 30, 0.9); + width: 100%; + height: 100%; +} + +main article { + margin: 20px; +} + +article p { + margin-top: 8px; + margin-bottom: 12px; +} diff --git a/themes/simple/static/fonts/aerial_2/Aerial_Demo.ttf b/themes/simple/static/fonts/aerial_2/Aerial_Demo.ttf deleted file mode 100644 index c05902b..0000000 Binary files a/themes/simple/static/fonts/aerial_2/Aerial_Demo.ttf and /dev/null differ diff --git a/themes/simple/static/fonts/babel_sans/BabelSans-Bold.ttf b/themes/simple/static/fonts/babel_sans/BabelSans-Bold.ttf deleted file mode 100644 index b424125..0000000 Binary files a/themes/simple/static/fonts/babel_sans/BabelSans-Bold.ttf and /dev/null differ diff --git a/themes/simple/static/fonts/babel_sans/BabelSans-BoldOblique.ttf b/themes/simple/static/fonts/babel_sans/BabelSans-BoldOblique.ttf deleted file mode 100644 index 4eb381e..0000000 Binary files a/themes/simple/static/fonts/babel_sans/BabelSans-BoldOblique.ttf and /dev/null differ diff --git a/themes/simple/static/fonts/babel_sans/BabelSans-Oblique.ttf b/themes/simple/static/fonts/babel_sans/BabelSans-Oblique.ttf deleted file mode 100644 index 1e373cf..0000000 Binary files a/themes/simple/static/fonts/babel_sans/BabelSans-Oblique.ttf and /dev/null differ diff --git a/themes/simple/static/fonts/babel_sans/BabelSans.ttf b/themes/simple/static/fonts/babel_sans/BabelSans.ttf deleted file mode 100644 index e0f41e7..0000000 Binary files a/themes/simple/static/fonts/babel_sans/BabelSans.ttf and /dev/null differ diff --git a/themes/simple/static/fonts/canela/canela-Bold-TRIAL.otf b/themes/simple/static/fonts/canela/canela-Bold-TRIAL.otf deleted file mode 100644 index 5388781..0000000 Binary files a/themes/simple/static/fonts/canela/canela-Bold-TRIAL.otf and /dev/null differ diff --git a/themes/simple/static/fonts/canela/canela-Light-TRIAL.otf b/themes/simple/static/fonts/canela/canela-Light-TRIAL.otf deleted file mode 100644 index 0d63838..0000000 Binary files a/themes/simple/static/fonts/canela/canela-Light-TRIAL.otf and /dev/null differ diff --git a/themes/simple/static/fonts/canela/canela-Regular-TRIAL.otf b/themes/simple/static/fonts/canela/canela-Regular-TRIAL.otf deleted file mode 100644 index ca06acf..0000000 Binary files a/themes/simple/static/fonts/canela/canela-Regular-TRIAL.otf and /dev/null differ diff --git a/themes/simple/static/fonts/gocake/Gocake.jpg b/themes/simple/static/fonts/gocake/Gocake.jpg deleted file mode 100644 index 4ddc512..0000000 Binary files a/themes/simple/static/fonts/gocake/Gocake.jpg and /dev/null differ diff --git a/themes/simple/static/fonts/gocake/Gocake.otf b/themes/simple/static/fonts/gocake/Gocake.otf deleted file mode 100644 index 561913e..0000000 Binary files a/themes/simple/static/fonts/gocake/Gocake.otf and /dev/null differ diff --git a/themes/simple/static/fonts/gocake/Gocake.ttf b/themes/simple/static/fonts/gocake/Gocake.ttf deleted file mode 100644 index 50b1665..0000000 Binary files a/themes/simple/static/fonts/gocake/Gocake.ttf and /dev/null differ diff --git a/themes/simple/static/fonts/gocake/More Info.txt b/themes/simple/static/fonts/gocake/More Info.txt deleted file mode 100644 index 4e42afe..0000000 --- a/themes/simple/static/fonts/gocake/More Info.txt +++ /dev/null @@ -1,24 +0,0 @@ -First of All, - -Thank you for download my product. -This product 100% free for personal use & commercial use - -File include : - -1. Gocake.ttf -2. Gocake.otf - -More Info : -hi@khurasanstudio.com - -For Donation: -paypal.me/jalkhurasan - -My OnlineShop: -https://www.creativefabrica.com/ref/53/ - -My Portofolio: -https://www.behance.net/khurasan - -My web: -www.khurasanstudio.com \ No newline at end of file diff --git a/themes/simple/static/fonts/gocake/Read Me.pdf b/themes/simple/static/fonts/gocake/Read Me.pdf deleted file mode 100644 index 4e5ae0f..0000000 Binary files a/themes/simple/static/fonts/gocake/Read Me.pdf and /dev/null differ diff --git a/themes/simple/static/fonts/hockey.ttf b/themes/simple/static/fonts/hockey.ttf new file mode 100644 index 0000000..ce7da93 Binary files /dev/null and b/themes/simple/static/fonts/hockey.ttf differ diff --git a/themes/simple/static/fonts/ltstreak.ttf b/themes/simple/static/fonts/ltstreak.ttf new file mode 100644 index 0000000..1ceff6c Binary files /dev/null and b/themes/simple/static/fonts/ltstreak.ttf differ diff --git a/themes/simple/templates/base.html b/themes/simple/templates/base.html index f34054f..1667620 100644 --- a/themes/simple/templates/base.html +++ b/themes/simple/templates/base.html @@ -55,7 +55,7 @@

{{ SITESUBTITLE }}

{% endif %} {% endblock header %} -
+