odin-default-css-exercises/foundations/06-cascade-fix/style.css

43 lines
527 B
CSS
Raw Normal View History

body {
font-family: Arial, Helvetica, sans-serif;
2022-07-26 11:50:43 +00:00
}
.para,
.small-para {
2022-07-26 11:50:43 +00:00
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 {
2022-07-26 11:50:43 +00:00
color: rgb(0, 0, 0);
font-weight: 800;
font-size: 14px;
}
div.text {
2022-07-26 11:50:43 +00:00
color: rgb(0, 0, 0);
font-size: 22px;
font-weight: 100;
}