Skip to content

zenab12/Freecodecamp-city-skyline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

tips i learned while coding this task

  • Variables implies only for it's children . That's just how CSS works. Because of this, variables are often declared in the :root selector. This is the highest level selector in CSS; putting your variables there will make them usable everywhere and we make fallback value to avoid any problem.
  • Gradients in CSS are a way to transition between colors across the distance of an element. They are applied to the background property and the syntax looks like this:
gradient-type(
  color1,
  color2
);
  • You can specify where you want a gradient transition to complete by adding it to the color like this:
gradient-type(
  color1,
  color2 20%,
  color3
);
  • So far, all the gradients you created have gone from top to bottom, that's the default direction. You can specify another direction by adding it before your colors like this:
gradient-type(
  direction,
  color1,
  color2
);

Screen Shot 2022-07-24 at 18 57 26 Screen Shot 2022-07-24 at 19 48 20