icons.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // icon
  2. .icon {
  3. display: inline-block;
  4. vertical-align: middle;
  5. background-repeat: no-repeat;
  6. background-size: 100% 100%;
  7. &-checked {
  8. width: 20px;
  9. height: 20px;
  10. background-image: url(../images/icon-checked.png);
  11. }
  12. &-doubt {
  13. background-image: url(../images/icon-doubt.png);
  14. width: 50px;
  15. height: 50px;
  16. }
  17. &-help {
  18. background-image: url(../images/icon-help.png);
  19. width: 32px;
  20. height: 32px;
  21. }
  22. &-back {
  23. background-image: url(../images/icon-back.png);
  24. width: 32px;
  25. height: 32px;
  26. }
  27. &-two-gray {
  28. background-image: url(../images/icon-two-gray.png);
  29. width: 12px;
  30. height: 10px;
  31. }
  32. &-two-white {
  33. background-image: url(../images/icon-two-white.png);
  34. width: 12px;
  35. height: 10px;
  36. }
  37. &-three-gray {
  38. background-image: url(../images/icon-three-gray.png);
  39. width: 16px;
  40. height: 10px;
  41. }
  42. &-three-white {
  43. background-image: url(../images/icon-three-white.png);
  44. width: 16px;
  45. height: 10px;
  46. }
  47. &-four-gray {
  48. background-image: url(../images/icon-four-gray.png);
  49. width: 18px;
  50. height: 10px;
  51. }
  52. &-four-white {
  53. background-image: url(../images/icon-four-white.png);
  54. width: 18px;
  55. height: 10px;
  56. }
  57. }