Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

41 řádky
997 B

  1. @import "_breakpoints";
  2. @mixin container {
  3. width: 100%;
  4. max-width: 1200px;
  5. margin: 0 auto;
  6. }
  7. @mixin flex-row {
  8. display: flex;
  9. flex-direction: row;
  10. }
  11. @mixin flex-column {
  12. display: flex;
  13. flex-direction: column;
  14. }
  15. @mixin flex-center {
  16. display: flex;
  17. justify-content: center;
  18. align-items: center;
  19. }
  20. @mixin content-box-hover {
  21. background-image: url(images/pexels-karolina-grabowska-5882705.jpg);
  22. background-position: center;
  23. background-repeat: no-repeat;
  24. background-size: cover;
  25. position: relative;
  26. .content-box-items {
  27. position: relative;
  28. z-index: 1;
  29. color: white;
  30. h3 {
  31. color: white;
  32. }
  33. }
  34. .overlay-blue {
  35. opacity: 0.8;
  36. }
  37. }