summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlmightyMiau <almightymeow612@gmail.com>2025-02-05 16:57:34 -0800
committerAlmightyMiau <almightymeow612@gmail.com>2025-02-05 16:57:34 -0800
commit13bc691cc87d052443daf8a9a1866973fb81b99a (patch)
tree07d7d3286cb3fe8eee867ecf4f16df32ea8c95ef
parent078cb01ee4664379c0dd579acc5ce7a90e1445f3 (diff)
Set #bottom styles
Set background color, font color, size, and weight for #bottom and #call-to-action sections. Also set default font weight to 300.
-rw-r--r--styles.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/styles.css b/styles.css
index a9f7241..0754615 100644
--- a/styles.css
+++ b/styles.css
@@ -1,5 +1,6 @@
* {
font-family: "Roboto", serif;
+ font-weight: 300;
}
#top {
@@ -60,4 +61,22 @@ button {
font-size: 24px;
color: #1F2937;
font-weight: 900;
+}
+
+#bottom {
+ background-color: #FFFFFF;
+}
+#call-to-action {
+ background-color: #3882F6;
+}
+#call-to-action h3 {
+ font-size: 24px;
+ color: #F9FAF8;
+}
+#call-to-action h6 {
+ font-size: 18px;
+ color: #E5E7EB;
+}
+#call-to-action button {
+ border: 2px solid white;
} \ No newline at end of file