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

15 lines
196 B
CSS

.inverted,
.fancy {
font-family: Helvetica, "Times New Roman", sans-serif;
font-size: 28px;
}
.inverted {
background-color: black;
color: white;
}
.fancy {
background-color: yellow;
}