SzabiSch / bootcamp-schedule

0 stars 0 forks source link

Advanced HTML&CSS: Custom Properties #40

Closed codingbootcampseu closed 2 years ago

codingbootcampseu commented 3 years ago

Hints

body {
  --main-color: red;
}

h1 {
  border: 2px solid var(--main-color);
}

Bonus

Add a media query that changes the colors of your cv based on the color scheme preferences of the visitor.

body {
  --page-background-color: white;
  --page-text-color: black;
}

@media screen and (prefers-color-scheme: dark) {
  body {
    --page-background-color: black;
    --page-text-color: white;
  }
}

Example Solution and Comparison

SzabiSch commented 2 years ago

war auch schon eigentlich abgearbeitet