diff --git a/index.html b/index.html index 3b39f23..e5567a3 100644 --- a/index.html +++ b/index.html @@ -27,7 +27,7 @@

What makes a developer a good developer?

-
+

What is Bad code?

@@ -90,7 +90,7 @@

What makes bad code?

-
+

What is clean code?

@@ -132,7 +132,7 @@

Ethics of code

-
+

When to use Comments?

diff --git a/style.css b/style.css index 26f8ac8..3912639 100644 --- a/style.css +++ b/style.css @@ -21,6 +21,11 @@ h2 { font-size: 39px; } +h1, +h2 { + margin-bottom: 30px; +} + div { width: 100%; height: 100%; @@ -44,8 +49,10 @@ img { } p { + text-align: justify; max-width: 450px; padding: 18px; + color: rgba(0, 0, 0, 0.6); } ul { @@ -62,3 +69,24 @@ li { flex-direction: column; } } + +.s-blue { + background-color: #0802a3; + color: white; +} + +.s-pink { + background-color: #ff4b91; + color: white; +} + +.s-yellow, +.s-yellow p { + background-color: #ffcd4b; + color: rgb(0, 0, 0) !important; +} + +.s-blue p, +.s-pink p { + color: rgba(255, 255, 255, 0.8); +}