odin-css-exercises/foundations/06-cascade-fix/style.css
Jonathan R Martinez-Hernandez 58fe9c32eb
Added missing weight from solution.css
The solution.css has a font weight of 800 on the classes .para, small-para, .small-para, and .child that were missing from the originally assigned style.css
2022-07-31 20:12:30 -05:00

41 lines
504 B
CSS

body{
font-family:Arial, Helvetica, sans-serif
}
.para,
.small-para {
color: hsl(0, 0%, 0%);
font-weight: 800;
}
.small-para {
font-size: 14px;
font-weight: 800;
}
.para {
font-size: 22px;
}
.confirm {
background: green;
color: white;
font-weight: bold;
}
.button {
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
font-size: 20px;
}
.child {
color: rgb(0, 0, 0);
font-weight: 800;
font-size: 14px;
}
div.text {
color: rgb(0, 0, 0);
font-size: 22px;
}