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

36 lines
381 B
CSS
Raw Normal View History

.para,
.small-para {
color: hsl(0, 100%, 50%);
}
.small-para {
font-size: 12px;
}
.para {
font-size: 22px;
}
.confirm {
background: green;
color: white;
font-size: 20px;
font-weight: bold;
}
.button {
background-color: #ffc0cb;
color: black;
font-size: 20px;
}
.child {
2021-12-16 06:04:32 +00:00
color: green;
font-size: 14px;
}
div.text {
2021-12-16 06:04:32 +00:00
color: blue;
font-size: 28px;
2021-12-16 06:04:32 +00:00
}