saren86

triangle

Feb 17th, 2019
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. .menu_triangle {
  2.     position: absolute;
  3.     top: 0;
  4.     left: 0;
  5.     width: 6px;
  6.     height: 10px;
  7.     transform: translateX(-5px);
  8.     transition: transform 0.5s;
  9. }
  10. .menu_triangle::after, .menu_triangle::before {
  11.     top: 0;
  12.     left: 0;
  13.     border: solid transparent;
  14.     content: " ";
  15.     height: 0;
  16.     width: 0;
  17.     position: absolute;
  18.     pointer-events: none;
  19.     transition: transform 0.3s;
  20. }
  21. .menu_triangle::before {
  22.     border-color: rgba(229, 37, 33, 0);
  23.     border-top-color: #e52521;
  24.     border-width: 5px;
  25.     margin-left: -5px;
  26. }
Add Comment
Please, Sign In to add comment