-
Notifications
You must be signed in to change notification settings - Fork 1
Styling
As it was already said, styling for HTML is done with CSS, which can be quite complicated at times, but extremely powerful as well.
The IML website is based on a library called Bootstrap, which means that a lot of the styling is done automatically and nobody should bother about it. You can learn more about Bootstrap here: use the menu on the left to discover the various elements.
The really interesting part is the /assets/css/styles.css file. It contains all the custom CSS rules that define the various element of the website.
The most important part is the beginning :root { ... }. Between the curly braces you will find some variable that define the main colors and fonts used in all the website. Change them and you will see that all pages will use the new colors.
If you are interested you can explore the rest of the file, but it's much more complex and leass easy to modify. It's divided in sections and each section is dedicated to a certain element.