Guest User

Untitled

a guest
Jul 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. /**
  2. * The first commented line is your dabblet’s title
  3. */
  4.  
  5.  
  6.  
  7. html, body {
  8. min-height: 100%;
  9. }
  10. .box {
  11. color: #fff;
  12. width: 50px;
  13. background: linear-gradient(90deg, #f06, yellow) #f06;
  14. border-radius: 6px 6px 6px 0;
  15. position: relative;
  16. }
  17. .tail-wrap {
  18. position: absolute;
  19. top: 100%;
  20. width: 100%;
  21. transform: rotate(70deg);
  22. transform-origin: 0 0;
  23. clip: rect(-1000px,10px,auto,auto);
  24. }
  25. .tail {
  26. background: linear-gradient(90deg, #f06, yellow) #f06;
  27. height: 20px;
  28. transform: rotate(-70deg);
  29. transform-origin: 0 0;
  30. }
Add Comment
Please, Sign In to add comment