Advertisement
deedspool

Untitled

Jun 20th, 2022
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.41 KB | None | 0 0
  1. .gr-header {
  2.   background-image: url('{{ header-bg }}');
  3. }
  4. .gr-header:before {
  5.   background-image: url('{{ header-flare }}');
  6. }
  7. .gr-container {
  8.   background-image: url('{{ site-bg }}');
  9. }
  10. .gr-dialog {
  11.   background-image: url('{{ dialog }}');
  12. }
  13. .gr-dialog-close-icon {
  14.   background-image: url('{{ close }}');
  15. }
  16. .gr-toast {
  17.   background-image: url('{{ toast }}');
  18. }
  19. .gr-button.primary {
  20.   background-image: url('{{ btn }}');
  21. }
  22. .gr-button.cancel {
  23.   background-image: url('{{ btn-gray }}');
  24. }
  25. .gr-button:before {
  26.   background-image: url('{{ btn-flare }}');
  27. }
  28. .gr-button.cancel:before {
  29.   background-image: url('{{ btn-flare-gray }}');
  30. }
  31. .gr-button.special:before {
  32.   background-image: url('{{ btn-long }}');
  33. }
  34. .gr-button.special.btn-share--gray:before {
  35.   background-image: url('{{ btn-share-gray }}');
  36. }
  37. .app-drawn-dialog-ctx .gr-button.primary:before {
  38.   background-image: url('{{ btn-confirm }}');
  39. }
  40. .app-rule-icon {
  41.   background-image: url("{{ rule }}");
  42. }
  43. .app-history-icon {
  44.   background-image: url("{{ history }}");
  45. }
  46. .app-music-icon.on {
  47.   background-image: url('{{ music_on }}');
  48. }
  49. .app-music-icon.off {
  50.   background-image: url('{{ music_off }}');
  51. }
  52. .app-token-icon {
  53.   background-image: url("{{ diamond }}");
  54. }
  55. .app-no-records-icon {
  56.   background-image: url("{{ no_record }}");
  57. }
  58. .app-history-item .app-history-inner::after {
  59.   background-image: url("{{ his-line }}");
  60. }
  61. .app-arrow-down {
  62.   background-image: url('{{ arrow-down }}');
  63. }
  64. .app-remind-check-icon {
  65.   background-image: url("{{ check }}");
  66. }
  67. .tasks__arrow-down {
  68.   background-image: url('{{ arrow-down }}');
  69. }
  70. .icon--card {
  71.   background-image: url('{{ icon-card }}');
  72. }
  73. .icon--gift {
  74.   background-image: url('{{ icon-gift }}');
  75. }
  76. .icon--gift:before {
  77.   background-image: url('{{ gift-flare }}');
  78. }
  79. .icon--back {
  80.   background-image: url('{{ icon-back }}');
  81. }
  82. .icon--info {
  83.   background-image: url('{{ icon-info }}');
  84. }
  85. .icon--info--active {
  86.   background-image: url('{{ icon-info-active }}');
  87. }
  88. .icon--play {
  89.   background-image: url('{{ icon-play }}');
  90. }
  91. .icon--play--active {
  92.   background-image: url('{{ icon-play-active }}');
  93. }
  94. .icon--play--white {
  95.   background-image: url('{{ icon-play-white }}');
  96. }
  97. .icon--list {
  98.   background-image: url('{{ icon-list }}');
  99. }
  100. .icon--facebook {
  101.   background-image: url('{{ icon-facebook }}');
  102. }
  103. .tasks:before {
  104.   background-image: url('{{ tasks-bg }}');
  105. }
  106. .task {
  107.   background-image: url('{{ task-bg }}');
  108. }
  109. .task:nth-child(even) {
  110.   background-image: url('{{ task-even-bg }}');
  111. }
  112. .flip-info {
  113.   background-image: url('{{ info-bg }}');
  114. }
  115. .app-reward {
  116.   background-image: url('{{ reward-cover }}');
  117. }
  118. .app-reward-status-drawn:after {
  119.   background-image: url('{{ checked }}');
  120. }
  121. .app-reward-status-drawn {
  122.   background-image: url('{{ reward-cover-darken }}');
  123. }
  124. .app-reward-status-active {
  125.   background-image: url('{{ reward-cover-active }}');
  126. }
  127. .prog-bar__point {
  128.   background-image: url('{{ point }}');
  129. }
  130. .prog-bar__point--passed {
  131.   background-image: url('{{ point-passed }}');
  132. }
  133. .prog-bar__num {
  134.   background-image: url('{{ milestone-num }}');
  135. }
  136. .sidebar {
  137.   background-image: url('{{ sidebar-bg }}');
  138. }
  139. .menu--active {
  140.   background-image: url('{{ menu-active }}');
  141. }
  142. .list {
  143.   background-image: url('{{ list-bg }}');
  144. }
  145. .deco {
  146.   background-image: url('{{ deco }}');
  147. }
  148. .kv-description {
  149.   background-image: url('{{ kv-description-bg }}');
  150. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement