/srdjan.github.io

https://srdjan.github.io

Primary LanguageHTML

My home page see it here!

May use in the future:

  • font sizing: :root { font-size: calc(1rem + 0.25vw); }
  • Mindful Palettes series no. 52 - Color sampler with color codes: #FDFDFE, #EEF0F3, #EEFF99, #1A9597, #104071, and #000022

Example css:

 :root {
  --primary-color: #2b2d42;
  --secondary-color: #8d99ae;
  --accent-color: #ef233c;
}

body {
  background-color: var(--primary-color);
}

h1 {
  color: var(--secondary-color);
}

a {
  color: var(--accent-color);
}