about summary refs log tree commit diff
path: root/app/javascript/styles/mastodon/landing_strip.scss
blob: 0bf9daafd4b6461272747e74850d2ee51243deaa (plain) (blame)
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
.landing-strip,
.memoriam-strip {
  background: rgba(darken($ui-base-color, 7%), 0.8);
  color: $ui-primary-color;
  font-weight: 400;
  padding: 14px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;

  strong,
  a {
    font-weight: 500;
  }

  a {
    color: inherit;
    text-decoration: underline;
  }

  .logo {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    margin-right: 15px;
  }

  @media screen and (max-width: 740px) {
    margin-bottom: 0;
  }
}

.memoriam-strip {
  background: rgba($base-shadow-color, 0.7);
}