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

34 lines
378 B
CSS
Raw Normal View History

.para,
.small-para {
color: hsl(0, 100%, 50%);
}
.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 {
2021-12-20 01:24:31 +00:00
color: red;
font-size: 14px;
}
div.text {
2021-12-20 01:24:31 +00:00
color: green;
font-size: 22px;
2021-12-20 01:24:31 +00:00
}