diff --git a/.hintrc b/.hintrc new file mode 100644 index 00000000000..5b02c110a7c --- /dev/null +++ b/.hintrc @@ -0,0 +1,13 @@ +{ + "extends": [ + "development" + ], + "hints": { + "axe/forms": [ + "default", + { + "label": "off" + } + ] + } +} \ No newline at end of file diff --git a/foundations/block-and-inline/01-margin-and-padding-1/style.css b/foundations/block-and-inline/01-margin-and-padding-1/style.css index f4d0a708453..9c39fb73834 100644 --- a/foundations/block-and-inline/01-margin-and-padding-1/style.css +++ b/foundations/block-and-inline/01-margin-and-padding-1/style.css @@ -6,23 +6,20 @@ body { .one { background: pink; border: 3px solid blue; - /* CHANGE ME */ - padding: 0px; - margin: 0px; + padding: 32px; + margin: 12px; } .two { background: lightblue; border: 3px solid purple; - /* CHANGE ME */ - margin-bottom: 0px; + margin-bottom: 48px; } .three { background: peachpuff; border: 3px solid brown; width: 200px; - /* CHANGE ME */ - padding: 0px; - margin-left: 0px; + padding: 32px; + margin-left: auto; } \ No newline at end of file diff --git a/foundations/block-and-inline/02-margin-and-padding-2/style.css b/foundations/block-and-inline/02-margin-and-padding-2/style.css index 00d1de59bf9..99f0b13b0f4 100644 --- a/foundations/block-and-inline/02-margin-and-padding-2/style.css +++ b/foundations/block-and-inline/02-margin-and-padding-2/style.css @@ -1,27 +1,39 @@ body { background: #eee; font-family: sans-serif; + } .card { width: 400px; background: #fff; margin: 16px auto; + padding: 8px; + } .title { background: #e3f4ff; + font-size: 16px; + margin-bottom: 8px; } .content { background: #e3f4ff; + padding: 16px 8px 16px 8px; + margin-bottom: 8px; } .button-container { background: #e3f4ff; + padding: 8px; + text-align: center; } button { background: white; border: 1px solid #eee; + padding: 8px 24px 8px 24px; + display: block; + margin: 0 auto; } \ No newline at end of file diff --git a/foundations/cascade/01-cascade-fix/index.html b/foundations/cascade/01-cascade-fix/index.html index 0c5b2271748..0c3faba1b80 100644 --- a/foundations/cascade/01-cascade-fix/index.html +++ b/foundations/cascade/01-cascade-fix/index.html @@ -9,7 +9,7 @@
I'm just a paragraph with extra bold text!
-I'm a smaller paragraph, also with extra bold text!
+I'm a smaller paragraph, also with extra bold text!
diff --git a/foundations/cascade/01-cascade-fix/style.css b/foundations/cascade/01-cascade-fix/style.css index daf07e0e8a4..9bc34f94b4e 100644 --- a/foundations/cascade/01-cascade-fix/style.css +++ b/foundations/cascade/01-cascade-fix/style.css @@ -3,21 +3,18 @@ body { } .para, -.small-para { +#small-paragraph { color: hsl(0, 0%, 0%); font-weight: 800; -} - -.small-para { - font-size: 14px; - font-weight: 800; + font-size: 10px; } .para { font-size: 22px; + font-weight: 900; } -.confirm { +#confirm-button { background: green; color: white; font-weight: bold; @@ -40,3 +37,8 @@ div.text { font-size: 22px; font-weight: 100; } + +.text > .child { + font-weight: 900; + font-size: 14px; +} \ No newline at end of file diff --git a/foundations/flex/01-flex-center/style.css b/foundations/flex/01-flex-center/style.css index e35feacd28d..52dbe94f0a5 100644 --- a/foundations/flex/01-flex-center/style.css +++ b/foundations/flex/01-flex-center/style.css @@ -3,6 +3,9 @@ border: 4px solid midnightblue; width: 400px; height: 300px; + display: flex; + justify-content: center; + align-items: center; } .box { diff --git a/foundations/flex/02-flex-header/style.css b/foundations/flex/02-flex-header/style.css index cb598c93548..c4d74f38c94 100644 --- a/foundations/flex/02-flex-header/style.css +++ b/foundations/flex/02-flex-header/style.css @@ -1,6 +1,10 @@ .header { font-family: monospace; background: papayawhip; + padding: 8px; + display: flex; + align-items: center; + justify-content: space-between; } .logo { @@ -9,17 +13,22 @@ color: tomato; background: white; padding: 4px 32px; + align-self: center; + justify-content: center; } ul { - /* this removes the dots on the list items*/ - list-style-type: none; + display: flex; + margin: 0; + padding: 0; + list-style: none; + display: flex; + gap: 10px; } a { font-size: 22px; background: white; padding: 8px; - /* this removes the line under the links */ text-decoration: none; } \ No newline at end of file diff --git a/foundations/flex/03-flex-header-2/index.html b/foundations/flex/03-flex-header-2/index.html index 21d56170b0b..ccf96164bd2 100644 --- a/foundations/flex/03-flex-header-2/index.html +++ b/foundations/flex/03-flex-header-2/index.html @@ -7,6 +7,7 @@