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

38 lines
443 B
CSS

body{
font-family:Arial, Helvetica, sans-serif
}
.para,
.small-para {
color: hsl(0, 0%, 0%);
}
.small-para {
font-size: 14px;
}
.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-size: 14px;
}
div.text {
color: rgb(0, 0, 0);
font-size: 22px;
}