Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 3 ans
12345678910111213141516171819202122232425262728293031323334
  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. }