Some follow-up and questions. I apologize in advance if I am asking for too much handholding, but I don’t know the first thing about CSS. I’m trying to teach myself, but it’s slow going. I haven’t touched web design stuff since HTML and some very basic JavaScript in the late 90s.
Is there a list somewhere of color codes that the code understands?
Aha, got it!
I was trying to use that, but I think I got hung up on the part in the example that goes “sans-serif”. What information needs to go after the font family and where can I find it in the Google fonts information?
And an all new #4: Basic custom CSS question: can I just add these to the end of the list, or is there some order that things needs to be in?
No worries, the forum is here to help. You might get faster and more useful responses from the discord though - there are members who know a lot more CSS than me even. And it’s probably easier to chat back and forth live. But regardless, I’m happy to answer here as best I can.
The font-family css is a list of fonts. So for instance font-family: 'Roboto', sans-serif; tells the browser to use the Roboto font (which is your custom one, loaded from the import statement) but fall back to the browser’s built-in sans-serif font if it can’t find one. Normally you’d just use either serif or sans-serif there depending on your font style preference.
CSS processes in the order written, so last one wins. But as long as your CSS definitions don’t collide or overlap, the order won’t matter.