Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.60 KB | None | 0 0
  1. $sqaure-width: 30%;
  2. $sqaure-height: 15%;
  3. $cut-y: 2%;
  4. $cut-x: 9%;
  5.  
  6. html,
  7. body {
  8.   margin: 0;
  9.   padding: 0;
  10.   width: 100%;
  11.   height: 100%;
  12. }
  13.  
  14. %sqaure {
  15.   display: inline-block;
  16.   width: $sqaure-width;
  17.   height: $sqaure-height;
  18.   text-align: center;
  19.   position: absolute;
  20.   left: 50% - $sqaure-width/2;
  21.   top: 50% - $sqaure-height/2;
  22. }
  23.  
  24. .A {
  25.   @extend %sqaure;
  26.   background: yellow;
  27.   border: solid 1px red;
  28.   margin-top: -$cut-y;
  29.   margin-left: -$cut-x;
  30. }
  31.  
  32. .B {
  33.   @extend %sqaure;
  34.   background: white;
  35.   border: solid 1px blue;
  36.   margin-top: $cut-y;
  37.   margin-left: $cut-x;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement