diff options
| author | Daniel Hader <[email protected]> | 2026-09-03 20:37:45 -0500 |
|---|---|---|
| committer | Daniel Hader <[email protected]> | 2026-09-03 20:37:45 -0500 |
| commit | a2c4acf6eea9a2e376ae8daaf225c744506c936a (patch) | |
| tree | e49d1a3767414ad6a8915ed86c1818bc5c329d49 /themes/simple/static/css | |
| parent | 5fa81500dcc07a853a01b0b0d813069467995807 (diff) | |
font cleanup and css work
Diffstat (limited to 'themes/simple/static/css')
| -rw-r--r-- | themes/simple/static/css/main.css | 66 |
1 files changed, 37 insertions, 29 deletions
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; +} |
