Update for accessibility
This commit is contained in:
parent
35adbf6686
commit
b919b54558
|
@ -13,3 +13,5 @@ Issues with the cascade can be the bane of their existence for many when it come
|
|||
### Self Check
|
||||
- Did you make sure to not edit the HTML file?
|
||||
- If you added selectors to the CSS, do they target a valid HTML element?
|
||||
|
||||
_Note: this exercise has had its style changed, for accessibility reasons. For new and old students, we propose to carry out the exercise noting how important it is to pay attention to the accessibility of the web, and we encourage more and more practices like this._
|
||||
|
|
|
@ -8,15 +8,15 @@
|
|||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<p class="para">I'm just a paragraph with red text!</p>
|
||||
<p class="para small-para">I'm a smaller paragraph, also with red text!</p>
|
||||
<p class="para">I'm just a paragraph with bold text!</p>
|
||||
<p class="para small-para">I'm a smaller paragraph, also with bold text!</p>
|
||||
|
||||
<button id="confirm-button" class="button confirm">Confirm</button>
|
||||
<button id="cancel-button" class="button cancel">Cancel</button>
|
||||
|
||||
<div class="text">I'm a div with green text!</div>
|
||||
<div class="text">I'm a div with green text and a child div!
|
||||
<div class="text child">I'm a smaller child div with red text.</div>
|
||||
<div class="text">I'm a div with thin text!</div>
|
||||
<div class="text">I'm a div with thin text and a child div!
|
||||
<div class="text child">I'm a smaller child div with bold text.</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,6 +1,11 @@
|
|||
body{
|
||||
font-family:Arial, Helvetica, sans-serif
|
||||
}
|
||||
|
||||
.para,
|
||||
.small-para {
|
||||
color: hsl(0, 100%, 50%);
|
||||
color: hsl(0, 0%, 0%);
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.para {
|
||||
|
@ -14,7 +19,8 @@
|
|||
}
|
||||
|
||||
div.text {
|
||||
color: green;
|
||||
color: rgb(0, 0, 0);
|
||||
font-weight: 200;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
|
@ -38,6 +44,7 @@ div.text {
|
|||
|
||||
.small-para {
|
||||
font-size: 14px;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -86,6 +93,7 @@ div.text {
|
|||
*/
|
||||
|
||||
div .child {
|
||||
color: red;
|
||||
color: rgb(0, 0, 0);
|
||||
font-weight: 900;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
|
|
@ -9,15 +9,15 @@
|
|||
<link rel="stylesheet" href="solution.css">
|
||||
</head>
|
||||
<body>
|
||||
<p class="para">I'm just a paragraph with red text!</p>
|
||||
<p class="para small-para">I'm a smaller paragraph, also with red text!</p>
|
||||
<p class="para">I'm just a paragraph with bold text!</p>
|
||||
<p class="para small-para">I'm a smaller paragraph, also with bold text!</p>
|
||||
|
||||
<button id="confirm-button" class="button confirm">Confirm</button>
|
||||
<button id="cancel-button" class="button cancel">Cancel</button>
|
||||
|
||||
<div class="text">I'm a div with green text!</div>
|
||||
<div class="text">I'm a div with green text and a child div!
|
||||
<div class="text child">I'm a smaller child div with red text.</div>
|
||||
<div class="text">I'm a div with thin text!</div>
|
||||
<div class="text">I'm a div with thin text and a child div!
|
||||
<div class="text child">I'm a smaller child div with bold text.</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,6 +1,10 @@
|
|||
body{
|
||||
font-family:Arial, Helvetica, sans-serif
|
||||
}
|
||||
|
||||
.para,
|
||||
.small-para {
|
||||
color: hsl(0, 100%, 50%);
|
||||
color: hsl(0, 0%, 0%);
|
||||
}
|
||||
|
||||
.small-para {
|
||||
|
@ -24,11 +28,11 @@
|
|||
}
|
||||
|
||||
.child {
|
||||
color: red;
|
||||
color: rgb(0, 0, 0);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
div.text {
|
||||
color: green;
|
||||
color: rgb(0, 0, 0);
|
||||
font-size: 22px;
|
||||
}
|
Loading…
Reference in New Issue