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.

42 lines
1022 B

  1. .icons_main() {
  2. li {
  3. display: inline-block;
  4. margin: 10px 10px;
  5. width: 140px;
  6. height: 140px;
  7. text-align: center;
  8. vertical-align: top;
  9. overflow: hidden;
  10. text-overflow: ellipsis;
  11. padding-top: 5px;
  12. padding-bottom: 5px;
  13. .cp-icons-name {
  14. width: 100%;
  15. height: 24px;
  16. margin: 0;
  17. display: inline-block;
  18. font-size: 14px;
  19. //align-items: center;
  20. //justify-content: center;
  21. overflow: hidden;
  22. white-space: nowrap;
  23. text-overflow: ellipsis;
  24. word-wrap: break-word;
  25. }
  26. &.cp-icons-element-selected {
  27. background-color: rgba(0,0,0,0.2);
  28. color: #666;
  29. }
  30. .fa {
  31. display: block;
  32. font-size: 64px;
  33. margin: 18px 0;
  34. text-align: center;
  35. &.listonly {
  36. display: none;
  37. }
  38. }
  39. }
  40. }