Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. .tab {
  2. background-color: #ffffff;
  3. border-radius: 50px;
  4. cursor: pointer;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. padding: 0 20px;
  9. margin: 0 10px;
  10. transition: background 0.4s linear;
  11. }
  12.  
  13. .tab i {
  14. font-size: 1.2em;
  15. }
  16.  
  17. .tab p {
  18. font-weight: bold;
  19. overflow: hidden;
  20. max-width: 0;
  21. }
  22.  
  23. .tab.active p {
  24. margin-left: 10px;
  25. max-width: 200px;
  26. transition: max-width 0.4s linear;
  27. }
  28.  
  29. .tab.active.purple {
  30. background-color: rgba(91, 55, 183, 0.2);
  31. color: rgba(91, 55, 183, 1);
  32. }
  33.  
  34. .tab.active.pink {
  35. background-color: rgba(201, 55, 157, 0.2);
  36. color: rgba(201, 55, 157, 1);
  37. }
  38.  
  39. .tab.active.yellow {
  40. background-color: rgba(230, 169, 25, 0.2);
  41. color: rgba(230, 169, 25, 1);
  42. }
  43.  
  44. .tab.active.teal {
  45. background-color: rgba(28, 150, 162, 0.2);
  46. color: rgba(28, 150, 162, 1);
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement