icons.less 635 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Colors
  2. .icon-accent {
  3. color: @accent-color-secondary!important;
  4. }
  5. .icon-lg {
  6. font-size: 32px !important;
  7. width: 32px !important;
  8. height: 32px !important;
  9. }
  10. .icon-md {
  11. font-size: 24px !important;
  12. width: 24px !important;
  13. height: 24px !important;
  14. }
  15. .icon-sm {
  16. font-size: 20px !important;
  17. width: 20px !important;
  18. height: 20px !important;
  19. }
  20. .icon-xs {
  21. font-size: 16px !important;
  22. width: 16px !important;
  23. height: 16px !important;
  24. }
  25. .icon-round-background {
  26. border-radius: 50%;
  27. }
  28. .icon-green-round-background {
  29. .icon-round-background;
  30. background: var(--green-30);
  31. color: var(--dark-jungle-green);
  32. }