From 51f147ab548333954e79d3e196b10a0b2be0baa9 Mon Sep 17 00:00:00 2001
From: Wolf Developer
Date: Sun, 26 Dec 2021 10:43:11 +0100
Subject: [PATCH 01/59] L-3: Add style for simple elements
---
starter/03-CSS-Fundamentals/index.html | 1 +
starter/03-CSS-Fundamentals/style.css | 36 ++++++++++++++++++++++++++
2 files changed, 37 insertions(+)
create mode 100644 starter/03-CSS-Fundamentals/style.css
diff --git a/starter/03-CSS-Fundamentals/index.html b/starter/03-CSS-Fundamentals/index.html
index df8a623a8..c6d474b81 100644
--- a/starter/03-CSS-Fundamentals/index.html
+++ b/starter/03-CSS-Fundamentals/index.html
@@ -3,6 +3,7 @@
The Basic Language of the Web: HTML
+
diff --git a/starter/03-CSS-Fundamentals/style.css b/starter/03-CSS-Fundamentals/style.css
new file mode 100644
index 000000000..5ec4056a2
--- /dev/null
+++ b/starter/03-CSS-Fundamentals/style.css
@@ -0,0 +1,36 @@
+h1 {
+ font-size: 26px;
+ font-family: sans-serif;
+ text-transform: uppercase;
+ font-style: italic;
+}
+
+h2 {
+ font-size: 40px;
+ font-family: sans-serif;
+}
+
+h3 {
+ font-size: 30px;
+ font-family: sans-serif;
+}
+
+h4 {
+ font-size: 20px;
+ font-family: sans-serif;
+ text-transform: uppercase;
+ /* align the text at the center of the parent element */
+ text-align: center;
+}
+
+p {
+ font-size: 22px;
+ font-family: sans-serif;
+ /* change the line height between each line by multiplying it by 1.5 */
+ line-height: 1.5;
+}
+
+li {
+ font-size: 20px;
+ font-family: sans-serif;
+}
From d6fa1aa6e3589b2bf5add26d3f80f23c09a1dee2 Mon Sep 17 00:00:00 2001
From: Wolf Developer
Date: Sun, 26 Dec 2021 11:41:32 +0100
Subject: [PATCH 02/59] L-3: list selectors and nested selectors
---
starter/03-CSS-Fundamentals/index.html | 2 +-
starter/03-CSS-Fundamentals/style.css | 18 +++++++++++++-----
2 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/starter/03-CSS-Fundamentals/index.html b/starter/03-CSS-Fundamentals/index.html
index c6d474b81..dfd7b5995 100644
--- a/starter/03-CSS-Fundamentals/index.html
+++ b/starter/03-CSS-Fundamentals/index.html
@@ -142,6 +142,6 @@ Related posts
-
+