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

17 lines
286 B
CSS
Raw Normal View History

@import url(https://db.onlinewebfonts.com/c/ab7131d92890e9815ec8b4caec426740?family=Ascender+Serif);
2021-08-29 23:22:54 +00:00
.inverted,
.fancy {
font-family: "Ascender Serif", sans-serif;
2021-08-29 23:22:54 +00:00
font-size: 28px;
}
.inverted {
background-color: black;
color: white;
}
.fancy {
background-color: yellow;
}