File tree Expand file tree Collapse file tree 3 files changed +101
-2
lines changed Expand file tree Collapse file tree 3 files changed +101
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,50 @@ footer.footer {
10
10
margin : 0.5rem 0 ;
11
11
}
12
12
13
+ .footer-info {
14
+ display : flex;
15
+ gap : 24px ;
16
+ }
17
+
18
+ @media screen and (max-width : 720px ) {
19
+ .footer-info {
20
+ flex-direction : column;
21
+ }
22
+ }
23
+
24
+ @media screen and (min-width : 720px ) {
25
+ .footer-info {
26
+ flex-direction : row;
27
+ }
28
+ }
29
+
30
+ .footer-info-item-large {
31
+ flex-grow : 3 ;
32
+ }
33
+
34
+ .footer-info-item {
35
+ flex-grow : 1 ;
36
+ }
37
+
38
+ .footer-info-item h2 {
39
+ margin-top : 0 ;
40
+ }
41
+
42
+ .footer-link-list {
43
+ list-style-type : none;
44
+ padding : 0 ;
45
+ margin : 0 ;
46
+ }
47
+
48
+ .footer-link-list li a {
49
+ color : var (--footer-font-color );
50
+ }
51
+
52
+ .footer-link-list li a : hover {
53
+ text-decoration : none;
54
+ color : var (--color-brand-primary );
55
+ }
56
+
13
57
.c-and-socials {
14
58
display : flex;
15
59
gap : 24px ;
@@ -52,12 +96,17 @@ footer.footer {
52
96
aspect-ratio : 1 ;
53
97
height : 36px ;
54
98
cursor : pointer;
55
- transition : all .3s ;
99
+ transition : all 0 .3s ;
56
100
}
57
101
58
102
.social-icon : hover {
59
103
background-color : var (--color-brand-primary );
60
104
color : var (--footer-font-color );
61
105
text-decoration : none;
106
+ }
62
107
63
- }
108
+ .footer-seperator {
109
+ width : 100% ;
110
+ height : 1px ;
111
+ background-color : var (--footer-font-color );
112
+ }
Original file line number Diff line number Diff line change 1
1
<footer class =" footer" >
2
2
<div class =" container" >
3
3
<div class =" footer-container" >
4
+ <!-- link columns -->
5
+ <div class =" footer-info" >
6
+ <div class =" footer-info-item-large" >
7
+ <img src =" {{{ uiRootPath }}} /img/logo-2-1.png" >
8
+ <p >
9
+ your data, your platform
10
+ </p >
11
+ </div >
12
+ <div class =" footer-info-item" >
13
+ <h2 >Company</h2 >
14
+ <ul class =" footer-link-list" >
15
+ <li >
16
+ <a href =" https://stackable.tech/en/about-us" >About Us</a >
17
+ </li >
18
+ <li >
19
+ <a href =" https://stackable.tech/en/blog" >Blog</a >
20
+ </li >
21
+ <li >
22
+ <a href =" https://jobs.stackable.de/" target =" _blank" >Jobs</a >
23
+ </li >
24
+ </ul >
25
+ </div >
26
+ <div class =" footer-info-item" >
27
+ <h2 >Support</h2 >
28
+ <ul class =" footer-link-list" >
29
+ <li >
30
+ <a href =" https://stackable.tech/en/contact" >Contact Us</a >
31
+ </li >
32
+ <li >
33
+ <a href =" https://stackable.tech/en/imprint" >Imprint</a >
34
+ </li >
35
+ <li >
36
+ <a href =" https://stackable.tech/en/data-protection" >Data Protection</a >
37
+ </li >
38
+ </ul >
39
+ </div >
40
+ <div class =" footer-info-item" >
41
+ <h2 >Get in touch</h2 >
42
+ <ul class =" footer-link-list" >
43
+ <li >
44
+ <a href =" mailto:info@stackable.de" >info@stackable.de</a >
45
+ </li >
46
+ <li >
47
+ <a href =" tel:+4941039263100" >+49 4103 926 3100</a >
48
+ </li >
49
+ </ul >
50
+ </div >
51
+ </div >
52
+ <div class =" footer-seperator" ></div >
53
+ <!-- social links -->
4
54
<div class =" c-and-socials" >
5
55
<div >© 2022 Stackable.</div >
6
56
<div class =" social-icons-container" >
You can’t perform that action at this time.
0 commit comments