adminMenu.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. @import "../../styles/variables";
  2. .menu-block {
  3. display:flex;
  4. justify-content: flex-start;
  5. flex-wrap: wrap;
  6. margin-top: 5px;
  7. .menu-skew {
  8. position: relative;
  9. top: 0px;
  10. left: 0;
  11. height: 220px;
  12. width: 40%;
  13. overflow: hidden;
  14. transition: 0.3s;
  15. margin: 5px 0;
  16. background-position: center;
  17. background-repeat: no-repeat;
  18. background-size: cover;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. transition: .5s ease-in-out;
  23. &:first-child {
  24. clip-path: polygon(0 0,100% 0,80% 100%,0% 100%);
  25. background-image:
  26. url(https://i2-prod.mirror.co.uk/incoming/article12948642.ece/ALTERNATES/s615/0_xxxxxxx.jpg);
  27. }
  28. &:nth-child(2) {
  29. right: -100px;
  30. clip-path: polygon(12% 0,100% 0,100% 100%,0% 100%);
  31. margin-left: -7%;
  32. flex-grow: 2;
  33. background-image: url(https://cdn.pixabay.com/photo/2014/01/24/13/32/marathon-250987_1280.jpg);
  34. }
  35. &:nth-child(3){
  36. flex-grow: 2;
  37. clip-path: polygon(0 0,100% 0,86% 100%,0% 100%);
  38. background-image: url(https://cdn.pixabay.com/photo/2016/07/07/22/58/cycling-1503365_1280.jpg);
  39. }
  40. &:nth-child(4) {
  41. flex-grow: 0;
  42. clip-path: polygon(24% 0,100% 0,100% 100%,0% 100%);
  43. margin-left: -8.5%;
  44. background-image: url(https://cdn.pixabay.com/photo/2017/06/06/18/06/jogging-2377983_1280.jpg);
  45. }
  46. &:nth-child(5) {
  47. clip-path: polygon(0 0,100% 0,80% 100%,0% 100%);
  48. background-image:
  49. url(https://cdn.pixabay.com/photo/2018/08/09/02/50/person-3593664_1280.jpg);
  50. }
  51. &:nth-child(6) {
  52. right: -100px;
  53. clip-path: polygon(12% 0,100% 0,100% 100%,0% 100%);
  54. margin-left: -7%;
  55. flex-grow: 2;
  56. background-image: url(https://cdn.pixabay.com/photo/2018/08/12/11/02/swim-3600519_1280.jpg);
  57. }
  58. .menu-text{
  59. color: $color-white;
  60. font-size: 3rem;
  61. letter-spacing: 0.2;
  62. font-weight: 600;
  63. text-shadow: 3px 3px 3px #000;
  64. transition: .5s ease-in-out;
  65. }
  66. &:hover {
  67. opacity: 0.75;
  68. .menu-text{
  69. color: $color-mint;
  70. font-size: 3.5rem;
  71. }
  72. }
  73. }
  74. }
  75. @media (max-width: $small){
  76. .menu-block {
  77. flex-direction: column;
  78. margin-top: 5px;
  79. .menu-skew {
  80. height: 150px;
  81. width: 100%;
  82. margin: 3px 0;
  83. &:first-child {
  84. clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  85. }
  86. &:nth-child(2) {
  87. clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  88. margin-left: 0;
  89. }
  90. &:nth-child(3){
  91. clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  92. }
  93. &:nth-child(4) {
  94. clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  95. margin-left: 0;
  96. }
  97. &:nth-child(5) {
  98. clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  99. }
  100. &:nth-child(6) {
  101. right: 0;
  102. clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  103. margin-left: 0;
  104. }
  105. .menu-text{
  106. font-size: 2rem;
  107. letter-spacing: 0;
  108. font-weight: 600;
  109. text-shadow: 2px 2px 2px #000;
  110. }
  111. }
  112. }
  113. }