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

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

.footer-item {
    //I'm doing nothing here.
}

#link::after {
    content: "\00B7";
}

#link:last-child::after {
    content: "";
}
  
footer {
    a {
       color: $turk;
       padding: 0 4px;
       &:hover {
         color: white;
         background-color: $turk;
        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;
       }
    }
}