|
3 | 3 | } */
|
4 | 4 |
|
5 | 5 | .es-footer {
|
| 6 | + background-color: var(--color-white); |
| 7 | + |
6 | 8 | & a,
|
7 | 9 | &:link,
|
8 | 10 | &:visited {
|
|
19 | 21 |
|
20 | 22 | & .footer-info {
|
21 | 23 | display: flex;
|
22 |
| - padding: var(--spacing-2) 0; |
| 24 | + justify-content: space-between; |
23 | 25 |
|
24 |
| - & .footer-logo { |
25 |
| - height: 3rem; |
| 26 | + & .logo-wrapper { |
| 27 | + grid-row: 1 / 4; |
26 | 28 | }
|
27 | 29 | }
|
28 | 30 |
|
29 | 31 | & .footer-info-links {
|
30 | 32 | display: grid;
|
31 |
| - grid-template-columns: repeat(2, 1fr); |
32 | 33 | grid-gap: 0.5rem;
|
| 34 | + grid-template-columns: repeat(3, 1fr); |
| 35 | + } |
| 36 | + |
| 37 | + & .footer-social { |
| 38 | + display: grid; |
| 39 | + grid-gap: 0.5rem; |
| 40 | + |
| 41 | + & a { |
| 42 | + align-items: center; |
| 43 | + display: flex; |
| 44 | + } |
| 45 | + |
| 46 | + & svg { |
| 47 | + fill: var(--color-gray-600); |
| 48 | + margin-right: var(--spacing-1); |
| 49 | + width: 1rem; |
| 50 | + } |
33 | 51 | }
|
34 | 52 |
|
35 | 53 | & .footer-hr {
|
|
39 | 57 | }
|
40 | 58 |
|
41 | 59 | & .footer-statement {
|
42 |
| - padding: var(--spacing-2) 0; |
43 |
| - display: flex; |
44 | 60 | justify-content: space-between;
|
| 61 | + background-color: var(--color-gray-100); |
45 | 62 | }
|
46 | 63 |
|
47 | 64 | & .footer-copyright {
|
48 | 65 | color: var(--color-gray-600);
|
49 | 66 | }
|
50 | 67 |
|
51 |
| - & .footer-social { |
52 |
| - display: flex; |
53 |
| - align-items: center; |
54 |
| - |
55 |
| - & svg { |
56 |
| - fill: var(--color-gray-600); |
57 |
| - } |
58 |
| - } |
59 |
| - |
60 | 68 | & .footer-contributions-wrapper {
|
61 | 69 | background-color: var(--color-white);
|
62 | 70 | }
|
63 | 71 |
|
64 | 72 | & .footer-contributions {
|
| 73 | + align-items: center; |
65 | 74 | color: var(--color-gray-600);
|
66 |
| - padding: 0; |
67 | 75 | display: flex;
|
68 | 76 | justify-content: space-between;
|
69 |
| - align-items: center; |
70 | 77 | }
|
71 | 78 |
|
72 |
| - & .footer-contributor-logo { |
| 79 | + & .footer-contributor-logo, |
| 80 | + & .footer-contributor-logo-link { |
73 | 81 | height: 1.6875rem;
|
| 82 | + line-height: 1.6875rem; |
74 | 83 | max-width: 4rem;
|
75 | 84 | }
|
| 85 | + |
| 86 | + @media (max-width: 1007px) { |
| 87 | + & .footer-info { |
| 88 | + flex-direction: column; |
| 89 | + |
| 90 | + & .footer-logo { |
| 91 | + margin-bottom: var(--spacing-1); |
| 92 | + width: 5rem; |
| 93 | + } |
| 94 | + } |
| 95 | + |
| 96 | + & .footer-info-links { |
| 97 | + display: flex; |
| 98 | + flex-wrap: wrap; |
| 99 | + |
| 100 | + & > a { |
| 101 | + margin-right: var(--spacing-2); |
| 102 | + } |
| 103 | + |
| 104 | + & .logo-wrapper { |
| 105 | + width: 100%; |
| 106 | + } |
| 107 | + } |
| 108 | + |
| 109 | + & .footer-contributions { |
| 110 | + align-items: start; |
| 111 | + flex-direction: column; |
| 112 | + } |
| 113 | + } |
76 | 114 | }
|
77 | 115 |
|
78 | 116 | footer.es-footer {
|
|
0 commit comments