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

_footer.scss « css « assets - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b37cb14a54851a73caaadd810fbeda099ffb9ae6 (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
footer {
  width: 8.25in;
  margin: 36px auto;
  text-align: center;
  display: flex;
  flex-flow: column;

  .footer-item {
    margin-bottom: 0.5rem;

    a {
      span {
        font-weight: 700;
      }

      color: $turk;
      padding: 0 4px;

      &:hover {
        color: white;
        background-color: $turk;
        text-decoration: none;
        transition: all 0.35s ease-out;
        transition-property: all 0.35s ease-out;
        -webkit-transition-property: all 0.35s ease-out;
        -moz-transition-property: all 0.35s ease-out;
        -o-transition-property: all 0.35s ease-out;
      }
    }

    .footer-link:not(:last-child)::after {
      content: "\00B7";
    }
  }
}