blob: 76f2846e483212be37b2dd7e061abbc6557326ca [file] [log] [blame]
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00001@charset "utf-8";
2@import "../util";
3
Nils Diewald652e5f42015-05-10 18:11:45 +00004/**
5 * Rules for the footer section of Kalamar
6 */
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00007footer {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00008 background-color: $dark-grey;
Akron7e5afce2020-08-25 15:50:19 +02009 position: absolute;
Akroned280252021-03-15 15:02:41 +010010
Akron7e5afce2020-08-25 15:50:19 +020011 bottom: 0;
12 padding-bottom: 2px;
13 font-size: 70%;
14 width: 100%;
15 text-align: right;
16
Akroned280252021-03-15 15:02:41 +010017 display: flex;
18 align-items: center;
19 height: $footer-height;
20
21 nav {
22 margin-left: $button-width;
23 padding: $item-padding;
24 text-align: left;
25 flex-grow: 2;
26 a {
27 white-space: nowrap;
28 }
29 }
30
31 div.logos {
32 font-size: 0;
33 flex-grow: 1;
34 }
35
36
Akronafeca252018-05-23 15:54:28 +020037 a {
Akroned280252021-03-15 15:02:41 +010038 font-size: 10pt;
Akronafeca252018-05-23 15:54:28 +020039 &:link {
Akroned280252021-03-15 15:02:41 +010040 // margin: 0 .5em;
Akron7e5afce2020-08-25 15:50:19 +020041 color: $light-grey;
Akronafeca252018-05-23 15:54:28 +020042 }
43 &:visited {
Akron7e5afce2020-08-25 15:50:19 +020044 color: $light-grey;
Akronafeca252018-05-23 15:54:28 +020045 }
46 &:hover {
Akron7e5afce2020-08-25 15:50:19 +020047 color: $nearly-white;
Akronafeca252018-05-23 15:54:28 +020048 }
49 &[href^="http://"]::after,
50 &[href^="https://"]::after {
51 content: none
52 }
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000053 }
Akroned280252021-03-15 15:02:41 +010054
Akronef6d5f12018-05-28 17:54:58 +020055 span.separator {
56 &:after {
Akroned280252021-03-15 15:02:41 +010057 font-size: bold;
58 content: " | ";
59 color: $dark-orange;
Akronef6d5f12018-05-28 17:54:58 +020060 }
61 }
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000062}
Akroned280252021-03-15 15:02:41 +010063
64/**
65 * Logo table of the front page
66 */
67#logos {
68 margin-right: $standard-margin;
69}
70
71/**
72 * Logo: Institute for German Language
73 */
74#ids-logo {
75 display: inline-block;
76 width: (631 / 30) + em;
77 height: (200 / 30) + em;
78 background-image: url('#{$img-path}/ids-institute-for-the-german-language-white.svg');
79}
80
81aside.active ~ footer {
82 padding-left: $logo-left-distance;
83 transition: all .3s ease-in-out;
84}