Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

35 rader
445 B

  1. @import "_mixins";
  2. *, body{
  3. margin: 0;
  4. padding: 0;
  5. list-style: none;
  6. box-sizing: border-box;
  7. font-family: Roboto;
  8. }
  9. p{
  10. opacity: 0.8;
  11. }
  12. .container{
  13. @include container;
  14. }
  15. img{
  16. width: 100%;
  17. }
  18. .overlay-blue {
  19. width: 100%;
  20. height: 100%;
  21. background-color: $secondary-color;
  22. opacity: 0.8;
  23. top: 0;
  24. left: 0;
  25. bottom: 0;
  26. right: 0;
  27. position: absolute;
  28. }
  29. a{
  30. text-decoration: none;
  31. }