RukiyaTossou / the-startup-responsive-interactieve-website

Ontwerp en maak een responsive website voor een startup.
https://rukiyatossou.github.io/the-startup-responsive-interactieve-website/
MIT License
0 stars 0 forks source link

Je zou font-family ook toe kunnen voegen aan custom properties. #2

Closed Tindyy closed 8 months ago

Tindyy commented 9 months ago

Door hiervoor custom properties te gebruiken kan het font altijd makkelijk worden aangepast.

:root {
   --lichte-achtergrond: #fff;
   --nav-tekst-kleur:#84BC2D;
   --tekst-op-lichte-achterground:#212121;
   --rounded: .4rem;
   --pilled: 1.4rem;
   --shadow: .3rem;
   --border: .15rem;

https://teacode.io/blog/what-is-white-label-application/

RukiyaTossou commented 8 months ago

Ik heb de font-family van de header aan de custom properties toegevoegd


  /* kleur */
   --lichte-achtergrond: #fff;
   --nav-tekst-kleur:#84BC2D;
   --tekst-op-lichte-achterground:#212121;
   --rounded: .4rem;
   --pilled: 1.4rem;
   --shadow: .3rem;
   --border: .15rem;
   /* font */
   --headings-font-family:"proxima-nova", sans-serif;
   --headings-font-weight:900;
}```