Advertisement
deedspool

Untitled

Jun 20th, 2022
64
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