You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
698 B

1 year ago
  1. @active-color: #11da75;
  2. ul {
  3. max-height: 700px;
  4. overflow-y: auto;
  5. padding-left: .5rem;
  6. img {
  7. width:64px;
  8. height:64px;
  9. padding: .2rem;
  10. margin: .3rem;
  11. cursor: pointer;
  12. &.active, &:hover {
  13. border: 1px solid @active-color;
  14. border-radius: 2px;
  15. color: #fff;
  16. transition: all .3s;
  17. }
  18. }
  19. li {
  20. list-style: none;
  21. float: left;
  22. text-align: center;
  23. cursor: pointer;
  24. color: #555;
  25. transition: color .3s ease-in-out,background-color .3s ease-in-out;
  26. position: relative;
  27. margin: 3px 0;
  28. border-radius: 4px;
  29. background-color: #fff;
  30. overflow: hidden;
  31. padding: 10px 0 0;
  32. }
  33. }