source: tanzpartie-hugo/themes/bilberry-hugo-theme/assets/sass/_footer.scss @ 17403

Last change on this file since 17403 was 16971, checked in by Henrik Bettermann, 2 years ago
File size: 3.2 KB
Line 
1footer {
2    border-top: 3px solid $footer-border-color;
3    border-bottom: 3px solid $footer-border-color;
4    background-color: $footer-background-color;
5
6    .container {
7        padding: 4rem 0;
8        display: flex;
9        justify-content: space-between;
10        font-size: 0.9em;
11        font-family: $headline-font;
12
13        div {
14            &:not(:first-child) {
15                margin-left: 5%;
16            }
17        }
18
19        &:after {
20            display: none;
21        }
22
23        strong {
24            text-transform: uppercase;
25            color: $footer-headline-color;
26            padding-bottom: 0.75em;
27        }
28
29        ul {
30            list-style: none;
31            margin-top: 1.25em;
32
33            li {
34                border-bottom: 1px solid #eee;
35                padding-right: 10px;
36            }
37
38            a {
39                position: relative;
40                left: 0;
41                display: inline-block;
42                transition: left 0.3s ease-in-out;
43                color: $highlight-color;
44                font-family: $content-font;
45
46                &:hover {
47                    left: 10px;
48                    color: $base-color;
49                }
50            }
51        }
52
53        .right {
54            .external-profiles {
55                width: 100%;
56                margin-bottom: 2em;
57
58                a {
59                    font-size: 2em;
60                    margin: 0 0.5rem;
61                    color: #444;
62
63                    &:hover {
64                        color: $highlight-color;
65                    }
66                }
67
68                // Workaround to avoid conflicts with Adblock
69                // See: https://github.com/Lednerb/bilberry-hugo-theme/issues/95
70                .fa-facebook-adblock-proof:before {
71                    content: "\f09a";
72                }
73
74                .fa-twitter-adblock-proof:before {
75                    content: "\f099";
76                }
77
78                .fa-google-plus-official-adblock-proof:before {
79                    content: "\f2b3";
80                }
81
82                .fa-youtube-adblock-proof:before {
83                    content: "\f167";
84                }
85            }
86
87            .languages {
88                width: 100%;
89                margin-left: 0;
90                margin-bottom: 2em;
91
92                a {
93                    text-transform: uppercase;
94                    color: $highlight-color;
95                    letter-spacing: 0.1em;
96
97                    &.active {
98                        font-weight: bold;
99                    }
100
101                    &:hover {
102                        color: $text-color;
103                    }
104
105                    &:not(:last-child):after {
106                        content: " | ";
107                        color: $text-color !important;
108                    }
109                }
110            }
111
112            .archive {
113                width: 100%;
114                margin-left: 0;
115            }
116
117            strong {
118                display: block;
119            }
120        }
121    }
122}
123
124.credits {
125    .container {
126        display: flex;
127        justify-content: space-between;
128        padding: 4rem 0;
129        font-size: 0.8em;
130        color: #777;
131
132        &:after {
133            display: none;
134        }
135    }
136}
Note: See TracBrowser for help on using the repository browser.