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.

53 lines
1012 B

  1. .regeneration-indicator {
  2. text-align: center;
  3. font-size: 16px;
  4. font-weight: 500;
  5. color: $dark-text-color;
  6. background: $ui-base-color;
  7. cursor: default;
  8. display: flex;
  9. flex: 1 1 auto;
  10. align-items: center;
  11. justify-content: center;
  12. padding: 20px;
  13. & > div {
  14. width: 100%;
  15. background: transparent;
  16. padding-top: 0;
  17. }
  18. &__figure {
  19. background: url('~flavours/glitch/images/elephant_ui_working.svg') no-repeat center 0;
  20. width: 100%;
  21. height: 160px;
  22. background-size: contain;
  23. position: absolute;
  24. top: 50%;
  25. left: 50%;
  26. transform: translate(-50%, -50%);
  27. }
  28. &.missing-indicator {
  29. padding-top: 20px + 48px;
  30. .regeneration-indicator__figure {
  31. background-image: url('~flavours/glitch/images/elephant_ui_disappointed.svg');
  32. }
  33. }
  34. &__label {
  35. margin-top: 200px;
  36. strong {
  37. display: block;
  38. margin-bottom: 10px;
  39. color: $dark-text-color;
  40. }
  41. span {
  42. font-size: 15px;
  43. font-weight: 400;
  44. }
  45. }
  46. }