odin-css-exercises/foundations/02-class-id-selectors/solution/solution.css
Roger a1154cea25
Added Linux-friendly font
Updated solution file to match README for this exercise updated with this Pull.
2022-01-09 16:00:23 +00:00

19 lines
273 B
CSS

.odd {
background-color: rgb(255, 167, 167);
font-family: Verdana, DejaVu Sans, sans-serif;
}
.oddly-cool {
font-size: 24px;
}
#two {
color: #0000ff;
font-size: 36px;
}
#four {
background-color: hsl(120, 100%, 75%);
font-size: 24px;
font-weight: bold;
}