Guest User

Untitled

a guest
Jan 22nd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. .fancy-box(@width, @height) {
  2. .border-radius(6px);
  3. .box-shadow(0px, 0px, 5px, rgba(0, 0, 0, 0.5));
  4.  
  5. display: block;
  6. background: rgb(0, 0, 0);
  7. background: rgba(0, 0, 0, 0.4);
  8. width: @width - 10;
  9. height: @height - 9;
  10. padding: 5px 5px 4px 5px;
  11.  
  12. > .inner {
  13. .border-radius(6px);
  14.  
  15. background: rgb(0, 0, 0);
  16. background: rgba(0, 0, 0, 0.8);
  17. border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  18.  
  19. width: @width - 10;
  20. height: @height - 10;
  21. position: relative;
  22. }
  23. }
Add Comment
Please, Sign In to add comment