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

20 lines
273 B
CSS
Raw Normal View History

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