OLD | NEW |
1 // This file is part of help.eyeo.com. | 1 // This file is part of help.eyeo.com. |
2 // Copyright (C) 2017 Eyeo GmbH | 2 // Copyright (C) 2017 Eyeo GmbH |
3 // | 3 // |
4 // help.eyeo.com is free software: you can redistribute it and/or modify | 4 // help.eyeo.com is free software: you can redistribute it and/or modify |
5 // it under the terms of the GNU General Public License as published by | 5 // it under the terms of the GNU General Public License as published by |
6 // the Free Software Foundation, either version 3 of the License, or | 6 // the Free Software Foundation, either version 3 of the License, or |
7 // (at your option) any later version. | 7 // (at your option) any later version. |
8 // | 8 // |
9 // help.eyeo.com is distributed in the hope that it will be useful, | 9 // help.eyeo.com is distributed in the hope that it will be useful, |
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 15 matching lines...) Expand all Loading... |
26 #site-footer .column | 26 #site-footer .column |
27 { | 27 { |
28 @media (min-width: $phablet-breakpoint) | 28 @media (min-width: $phablet-breakpoint) |
29 { | 29 { |
30 width: 50%; | 30 width: 50%; |
31 } | 31 } |
32 } | 32 } |
33 | 33 |
34 #site-footer-locales | 34 #site-footer-locales |
35 { | 35 { |
36 margin-bottom: $sm; | 36 margin-bottom: $small-space; |
37 | 37 |
38 @media (min-width: $phablet-breakpoint) | 38 @media (min-width: $phablet-breakpoint) |
39 { | 39 { |
40 margin-bottom: 0; | 40 margin-bottom: 0; |
41 } | 41 } |
42 } | 42 } |
43 | 43 |
44 #site-footer-nav | 44 #site-footer-nav |
45 { | 45 { |
46 @media (min-width: $phablet-breakpoint) | 46 @media (min-width: $phablet-breakpoint) |
(...skipping 13 matching lines...) Expand all Loading... |
60 #site-footer-nav nav | 60 #site-footer-nav nav |
61 { | 61 { |
62 @media (min-width: $tablet-breakpoint) | 62 @media (min-width: $tablet-breakpoint) |
63 { | 63 { |
64 display: inline; | 64 display: inline; |
65 } | 65 } |
66 } | 66 } |
67 | 67 |
68 #site-footer-nav nav li | 68 #site-footer-nav nav li |
69 { | 69 { |
70 margin-right: $sm; | 70 margin-right: $small-space; |
71 padding-right: $sm; | 71 padding-right: $small-space; |
72 border-right: 1px solid $gray; | 72 border-right: 1px solid $gray; |
73 | 73 |
74 &:last-child | 74 &:last-child |
75 { | 75 { |
76 margin-right: 0px; | 76 margin-right: 0px; |
77 padding-right: 0px; | 77 padding-right: 0px; |
78 border-right: 0px; | 78 border-right: 0px; |
79 } | 79 } |
80 | 80 |
81 @media (min-width: $tablet-breakpoint) | 81 @media (min-width: $tablet-breakpoint) |
82 { | 82 { |
83 &:last-child | 83 &:last-child |
84 { | 84 { |
85 margin-right: $sm; | 85 margin-right: $small-space; |
86 padding-right: $sm; | 86 padding-right: $small-space; |
87 border-right: 1px solid $gray; | 87 border-right: 1px solid $gray; |
88 } | 88 } |
89 } | 89 } |
90 } | 90 } |
91 | 91 |
92 #site-footer-nav a | 92 #site-footer-nav a |
93 { | 93 { |
94 white-space: nowrap; | 94 white-space: nowrap; |
95 } | 95 } |
OLD | NEW |