From 4e5b68630c548b1d8a34f9d24b34a02ce7ef1e4e Mon Sep 17 00:00:00 2001 From: Katy248 Date: Sat, 1 Jun 2024 11:13:16 +0300 Subject: [PATCH] Change `#s[1-7]` styles to `.s[1-7]` --- build.sh | 2 +- style.css | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build.sh b/build.sh index ea6da5d..dd658fe 100755 --- a/build.sh +++ b/build.sh @@ -63,7 +63,7 @@ write_header(){ } write_section_header(){ - echo "

" >> $3 + echo "

" >> $3 echo "$2" | tr a-z A-Z >> $3 echo "

" >> $3 } diff --git a/style.css b/style.css index 7d9ca83..5a8d72f 100644 --- a/style.css +++ b/style.css @@ -37,31 +37,31 @@ h2 { color: var(--fg-color-reverse); } -#s1 { +.s1 { background-color: #d65d0e; } -#s2 { +.s2 { background-color: #cc241d; } -#s3 { +.s3 { background-color: #98971a; } -#s4 { +.s4 { background-color: #d79921; } -#s5 { +.s5 { background-color: #458588; } -#s6 { +.s6 { background-color: #b16286; } -#s7 { +.s7 { background-color: #689d6a; }