Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.32 KB | None | 0 0
  1. @mixin mobile {
  2.    @media (max-width: 425px) {
  3.        @content;
  4.    }
  5. }
  6. .block {
  7.    &__content {
  8.        position: absolute;
  9.        bottom: 20%;
  10.        left: 10%;
  11.        width: 30%;
  12.        color: white;
  13.  
  14.        @include mobile {
  15.            bottom: 10%;
  16.            left: 5%;
  17.            width: 80%;
  18.        }
  19.    }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement