Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_footer.scss « scss « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 031848e1a0cccbe7d2b42d13c81e6a4529175ca0 (plain)
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
44
45
46
47
48
49
50
51
footer {
  max-width: $screen-max;
  margin: auto auto 0 auto;
  width: 100%;
  padding: 10px 1% 10px;
}
.footer {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--color-border);
  padding: 1rem 2rem;
  background: var(--color-footer-bg);
  width: 100%;
  margin: 0 auto;
  @media (min-width: $screen-md) {
    width: 80%;
  }

  &__socials {
    display: flex;
    align-items:center;
    flex-flow: row wrap;
    margin: 0.5rem;
  }
  &__copyright {
    margin: 0.5rem;
  }
}
.post-footer {
  padding-right: calc(48px + 2rem);
  @media (min-width: $screen-md) {
    padding-right: 1%;
  }
}
.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
}
@media (min-width: $screen-md) {

  .social-link {
    width: 1.5rem;
    height: 1.5rem;
    margin:0;
  }
}