Advertisement
Guest User

Untitled

a guest
Nov 27th, 2019
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.21 KB | None | 0 0
  1. ul {
  2.     display: inline-block;
  3.     list-style-type: none;
  4.     margin: 0;
  5.     padding: 0;
  6.     background-color: white;
  7.     border-radius: 0 8px 8px 0;
  8. }
  9.  
  10. ul li {
  11.     position: relative;
  12.     display: block;
  13.     padding: 10px 25px;
  14. }
  15.  
  16. ul li:first-child {
  17.     padding-top: 20px;
  18. }
  19.  
  20. ul li:last-child {
  21.     padding-bottom: 20px;
  22. }
  23.  
  24. ul li a {
  25.     font-size: 0.85rem;
  26.     font-family: 'Open Sans', sans-serif;
  27.     color: rgba(123, 123, 246, .3);
  28.     text-decoration: none;
  29. }
  30.  
  31. ul li.active a {
  32.     color: #7B7EF6 !important;
  33. }
  34.  
  35. ul li.active {
  36.     background-color: #F8EAF6;
  37. }
  38.  
  39. ul li.active::before, ul li.active a::after {
  40.     position: absolute;
  41.     content: '';
  42.     width: 20px;
  43.     height: 20px;
  44.     background-color: #F8EAF6;
  45. }
  46.  
  47. ul li.active a::before, ul li.active::after {
  48.     position: absolute;
  49.     content: '';
  50.     width: 40px;
  51.     height: 40px;
  52.     border-radius: 50%;
  53. }
  54.  
  55. ul li.active::before {
  56.     top: -20px;
  57.     right: 0px;
  58. }
  59.  
  60. ul li.active::after {
  61.     bottom: -40px;
  62.     right: 0px;
  63.     background-color: white;
  64. }
  65.  
  66. ul li.active a::before {
  67.     top: -40px;
  68.     right: 0px;
  69.     background-color: white;
  70. }
  71.  
  72. ul li.active a::after {
  73.     bottom: -20px;
  74.     right: 0px;
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement