From efb44f64181e93eb85fb01abfe515fc2c12bfce9 Mon Sep 17 00:00:00 2001 From: antonio miranda Date: Tue, 24 Mar 2020 23:12:43 +0100 Subject: [PATCH] provide base code without margin or padding The code we provide already matches the final result. This happens because the CSS files are imported form other exercise. This commit removes the import and adds only the base styles without any margin or padding. --- week-1/7-css-box/index.html | 9 --------- week-1/7-css-box/styles.css | 10 +++++++--- 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/week-1/7-css-box/index.html b/week-1/7-css-box/index.html index 1e9fd37fc..f3d301b30 100644 --- a/week-1/7-css-box/index.html +++ b/week-1/7-css-box/index.html @@ -5,7 +5,6 @@ 7. CSS Box Model - HTML, CSS and Git Exercises - @@ -21,14 +20,6 @@
  • Andorra
  • Angola
  • -
    - 1 - 2 - 3 - ... - 38 - Showing 5 of 190 -
    diff --git a/week-1/7-css-box/styles.css b/week-1/7-css-box/styles.css index 013b94f1e..a1b8d60f7 100644 --- a/week-1/7-css-box/styles.css +++ b/week-1/7-css-box/styles.css @@ -1,6 +1,10 @@ /* Try different box model properties below */ -.pages__page { - border: 1px solid #4491db; - border-radius: 4px; +.countries { + list-style: none; + border-bottom: 1px solid #bbb; +} + +.country { background: #fff; + border: 1px solid rgba(0, 0, 0, 0.2); }