Guest User

Untitled

a guest
Dec 11th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. /**
  2. * CSS Ribbon
  3. */
  4.  
  5. #box {
  6. position: relative;
  7. width: 300px;
  8. height: 75px;
  9. }
  10.  
  11. #box:hover {
  12. width: 500px;
  13. transition: all 1s;
  14. }
  15.  
  16. #front {
  17. position: absolute;
  18. background: red;
  19. height: 100%;
  20. width: 100%;
  21. z-index: 2;
  22.  
  23. color: white;
  24. font-family: arial;
  25. font-weight: bold;
  26. font-size: 30px;
  27. text-align: center;
  28. line-height: 75px;
  29. }
  30.  
  31.  
  32. #back {
  33. height: 100%;
  34. width: 75px;
  35. background: yellow;
  36. position: absolute;
  37. z-index: 1;
  38. right: -50px;
  39. top: 25px;
  40. }
  41.  
  42. #back #cut {
  43. height: 0px;
  44. width: 0px;
  45. position: absolute;
  46. z-index: 3;
  47. border: 38px solid white;
  48. border-color: transparent white transparent transparent;
  49. }
  50.  
  51.  
  52. #edge {
  53. width: 0px;
  54. height: 0px;
  55. position: absolute;
  56. border-color: blue transparent transparent transparent;
  57. border-style: solid;
  58. border-width: 25px;
  59. border-left-width: 0px;
  60. z-index: 3;
  61. top: 100%;
  62. right: 0px;
  63. }
Add Comment
Please, Sign In to add comment