odin-default-css-exercises/foundations/02-class-id-selectors/solution/solution.css

19 lines
259 B
CSS
Raw Normal View History

2021-08-29 23:22:54 +00:00
.odd {
background-color: rgb(255, 167, 167);
font-family: Verdana, 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;
}