diff options
author | Kai Stevenson <kai@kaistevenson.com> | 2024-01-27 16:21:55 -0800 |
---|---|---|
committer | Kai Stevenson <kai@kaistevenson.com> | 2024-01-27 16:21:55 -0800 |
commit | 027c1d2a66405dbb913f75d082376456c2a94a20 (patch) | |
tree | 05a6731da28023ad8822ca7d0b76fcf849e2b116 /src/style.php | |
parent | 28dedce6035153c1009d29fd77f5832ba43f5752 (diff) |
updated wording, font
Diffstat (limited to 'src/style.php')
-rw-r--r-- | src/style.php | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/src/style.php b/src/style.php index a3a8dcb..f9b18b3 100644 --- a/src/style.php +++ b/src/style.php @@ -2,7 +2,9 @@ header("Content-type: text/css; charset: UTF-8"); include($_SERVER["DOCUMENT_ROOT"] . "/vars.php"); ?> -@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap'); + +@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@900&family=Rosarivo&display=swap'); + :root { --background: #<?php echo($c_bg) ?>; @@ -36,16 +38,16 @@ body { p { text-align: left; text-indent: 25px; - font-family: 'Quicksand', sans-serif; - font-size: 16pt; + font-family: 'Rosarivo', cursive; + font-size: 13pt; color: var(--text); margin: 8px 75px 8px 75px; } h1 { text-align: center; - font-family: 'Quicksand', sans-serif; - font-size: 30pt; + font-family: 'Merriweather', serif; + font-size: 24pt; font-weight: 600; color: var(--header); padding: 50px 50px 3px 50px; @@ -54,8 +56,8 @@ h1 { h2 { text-align: center; - font-family: 'Quicksand', sans-serif; - font-size: 24pt; + font-family: 'Merriweather', serif; + font-size: 20pt; font-weight: 600; color: var(--header); padding: 8px 50px 8px 50px; @@ -64,9 +66,8 @@ h2 { h3 { text-align: left; text-indent: 55px; - font-family: 'Quicksand', sans-serif; - font-size: 16pt; - font-weight: 600; + font-family: 'Rosarivo', cursive; + font-size: 13pt; color: var(--text); padding: 8px 50px 2px 50px; } @@ -91,14 +92,12 @@ ul h3 a { ul p { text-indent: 0px; - font-family: 'Quicksand', sans-serif; font-size: 16pt; color: var(--text); } a { color: var(--secondary); - font-family: 'Quicksand', sans-serif; text-decoration: none; } |