diff --git a/index.html b/index.html
index 447dea7..fe122ab 100644
--- a/index.html
+++ b/index.html
@@ -18,6 +18,29 @@
your html.
+
+ -
+ Ensures consistency across browsers (thanks
+ normalize.css)
+
+ - Resets spacing (margin & padding)
+ - Resets font-size and line-height
+ -
+ Prevents the necessity of reseting defaults styles when authoring
+ stylesheets
+
+ -
+ Prevents style inspector bloat by only targeting what is necessary
+
+ - Contributes to the separation of presentation and semantics
+ -
+ Works well with all kind of styling approaches, atomic libraries like
+ tachyons, component based styling
+ like css-in-js in React, good 'ol
+ css, ...
+
+
+
Docs / Github
diff --git a/style.css b/style.css
index 845f71e..991514c 100644
--- a/style.css
+++ b/style.css
@@ -12,7 +12,7 @@ body {
flex-direction: column;
}
-/* General
+/* Home
========================================================== */
.container {
@@ -36,7 +36,7 @@ body {
.sub-title {
font-size: 1.4em;
- margin-bottom: 70px;
+ margin-bottom: 50px;
}
.btn {
@@ -53,6 +53,30 @@ body {
margin-left: 10px;
}
+.features {
+ margin-bottom: 60px;
+}
+
+.features li {
+ margin-bottom: 10px;
+ position: relative;
+ padding-left: 30px;
+}
+.features li::before {
+ content: '️️☑️';
+ position: absolute;
+ top: 0.2em;
+ left: 0;
+ font-size: 90%;
+}
+
+.features a {
+ text-decoration: underline;
+}
+
+/* Footer
+ ========================================================== */
+
.footer {
background-color: #f4f4f4;
text-align: center;
@@ -170,6 +194,12 @@ body {
margin-bottom: 4px;
}
+.compare-title a:active,
+.compare-title a:focus,
+.compare-title a:hover {
+ color: dodgerblue;
+}
+
@media (min-width: 750px) {
.compare-title {
margin-bottom: 0;