-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFooter.css
More file actions
115 lines (100 loc) · 2.21 KB
/
Footer.css
File metadata and controls
115 lines (100 loc) · 2.21 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body > footer {
position: fixed;
top: auto;
right: 0px;
bottom: 0px;
left: 0px;
z-index: 20;
}
footer {
width: auto;
height: 50px;
margin: 0px;
padding: 0px 16px;
line-height: 50px;
color: var(--footer-color);
background: var(--footer-background);
box-sizing: border-box;
}
footer,
footer[data-layout="flex"] {
display: block flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
footer[data-layout="grid"] {
display: block grid;
align-items: unset;
justify-content: unset;
}
footer[data-layout="flow"] {
display: block flow-root;
align-items: unset;
justify-content: unset;
}
footer div {
display: inline-block;
width: auto;
margin: 0px auto 0px auto;
padding: 0px;
vertical-align: middle;
text-align: center;
box-sizing: border-box;
}
footer div button {
width: auto;
line-height: 16px;
height: 32px;
}
footer div:first-of-type {
display: inline-block;
width: auto;
margin: 0px auto 0px 0px;
padding: 0px;
vertical-align: middle;
text-align: left;
box-sizing: border-box;
}
footer div:first-of-type button[data-action] {
color: var(--palette-secondary-color);
background: var(--palette-secondary-background);
cursor: pointer;
}
footer div:last-of-type {
display: inline-block;
width: auto;
margin: 0px 0px 0px auto;
padding: 0px;
vertical-align: middle;
text-align: right;
box-sizing: border-box;
}
footer div:last-of-type button[data-action] {
color: var(--palette-primary-color);
background: var(--palette-primary-background);
cursor: pointer;
}
footer button {
margin: 0px 0px 0px 8px;
}
footer button:first-of-type {
margin-left: 0px;
}
footer label {
font-family: 'cantarell';
font-size: 16px;
font-style: normal;
font-weight: normal;
}
footer div:first-of-type button[data-action][disabled],
footer div:first-of-type button[data-action][disabled]:hover,
footer div:first-of-type button[data-action][disabled]:focus,
footer div:last-of-type button[data-action][disabled],
footer div:last-of-type button[data-action][disabled]:hover,
footer div:last-of-type button[data-action][disabled]:focus {
color: var(--button-disabled-color);
background: var(--button-disabled-background);
border: 1px solid var(--button-default-border);
cursor: not-allowed;
}