~cytrogen/masto-fe

ref: dc35e2d7569a293bbda92ee3ecba8d2d4e6a7b64 masto-fe/app/javascript/flavours/glitch/styles/components/regeneration_indicator.css -rw-r--r-- 687 bytes
dc35e2d7 — Cytrogen Rename .scss → .css and remove sass dependency (Phase 9-10) 13 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.regeneration-indicator {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text-color);
  background: var(--ui-base-color);
  cursor: default;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;

  &__figure {
    &,
    img {
      display: block;
      width: auto;
      height: 160px;
      margin: 0;
    }
  }

  &--without-header {
    padding-top: 68px;
  }

  &__label {
    margin-top: 30px;

    strong {
      display: block;
      margin-bottom: 10px;
      color: var(--dark-text-color);
    }

    span {
      font-size: 15px;
      font-weight: 400;
    }
  }
}