odin-default-css-exercises/foundations/03-grouping-selectors/solution/solution.css

15 lines
196 B
CSS
Raw Normal View History

2021-08-29 23:22:54 +00:00
.inverted,
.fancy {
font-family: Helvetica, "Times New Roman", sans-serif;
2021-08-29 23:22:54 +00:00
font-size: 28px;
}
.inverted {
background-color: black;
color: white;
}
.fancy {
background-color: yellow;
}