-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathfooter.styles.ts
More file actions
101 lines (90 loc) · 2.18 KB
/
footer.styles.ts
File metadata and controls
101 lines (90 loc) · 2.18 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import { css } from 'emotion';
import { theme } from 'core/theme';
const { palette, spacing, breakpoints } = theme;
const color = palette.customPalette;
export const footerContainer = css`
display: flex;
flex-direction: column;
justify-content: space-between;
height: ${spacing(20.5)};
padding: ${spacing(2)} ${spacing(12.5)};
background-color: ${color.secondary};
@media (max-width: ${breakpoints.values.md}px) {
padding: ${spacing(2.5)} ${spacing(5)} ${spacing(3.75)} ${spacing(5)};
}
@media (max-width: ${breakpoints.values.xs}px) {
height: ${spacing(43.75)};
}
`;
export const topContainer = css`
display: flex;
justify-content: space-between;
height: ${spacing(24.375)};
padding: 0 ${spacing(2)};
align-items: center;
@media (max-width: ${breakpoints.values.xs}px) {
flex-direction: column-reverse;
justify-content: center;
align-items: center;
height: ${spacing(27.5)};
}
`;
export const topContainerCenter = css`
display: flex;
justify-content: center;
align-items: center;
height: ${spacing(24.375)};
padding: 0 ${spacing(2)};
`;
export const bottomContainer = css`
display: flex;
justify-content: space-between;
padding-top: ${spacing(2)};
border-top: 1px solid ${color.primary};
@media (max-width: ${breakpoints.values.xs}px) {
flex-direction: column;
justify-content: center;
align-items: center;
}
`;
export const lemoncodeIcon = css`
height: ${spacing(12)};
padding-bottom: ${spacing(1)}
`;
export const iconContainer = css`
display: flex;
margin: 0;
padding: 0;
list-style: none;
`;
export const iconListItem = css`
margin-right: ${spacing(1)};
&:first-of-type {
margin-right: ${spacing(1.4)};
}
&:last-of-type {
margin-right: 0;
}
`;
export const icon = css`
font-size: 1.5rem;
color: ${color.greyLight};
&:hover {
cursor: pointer;
color: ${color.primary};
}
`;
export const githubIcon = css`
height: ${spacing(2.75)};
fill: ${color.greyLight};
&:hover {
cursor: pointer;
fill: ${color.primary};
}
`;
export const copyright = css`
color: ${color.greyLight};
@media (max-width: ${breakpoints.values.xs}px) {
margin-top: ${spacing(0.8)};
}
`;