LEFT | RIGHT |
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 |
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 // GNU General Public License for more details. | 12 // GNU General Public License for more details. |
13 // | 13 // |
14 // You should have received a copy of the GNU General Public License | 14 // You should have received a copy of the GNU General Public License |
15 // along with help.eyeo.com. If not, see <http://www.gnu.org/licenses/>. | 15 // along with help.eyeo.com. If not, see <http://www.gnu.org/licenses/>. |
16 | 16 |
17 // Underlined Lists ////////////////////////////////////////////////////////////
////////// | 17 // Underlined Lists ////////////////////////////////////////////////////////////
////////// |
18 | 18 |
19 .underlined-list | 19 .underlined-list |
20 { | 20 { |
21 list-style: none; | 21 list-style: none; |
22 } | 22 } |
23 | 23 |
24 .underlined-list li a | 24 .underlined-list li a |
25 { | 25 { |
26 display: block; | 26 display: block; |
27 padding-top: $sm; | 27 padding-top: $sm; |
28 padding-bottom: $sm; | 28 padding-bottom: $sm; |
29 border-bottom: 1px dotted $gray; | 29 border-bottom: 1px dotted $gray; |
| 30 color: $accent; |
30 } | 31 } |
31 | |
32 | 32 |
33 .underlined-list li:last-child a | 33 .underlined-list li:last-child a |
34 { | 34 { |
35 border-bottom: none; | 35 border-bottom: none; |
36 } | 36 } |
| 37 |
| 38 // For underlined lists split into two columns, add a border-top |
| 39 // to the first 2 children on larger screens, and only the first |
| 40 // child on smaller screens (when collapsed to one column) |
37 | 41 |
38 .underlined-list .one-half:nth-child(1) a | 42 .underlined-list .one-half:nth-child(1) a |
39 { | 43 { |
40 border-top: 1px dotted $gray; | 44 border-top: 1px dotted $gray; |
41 } | 45 } |
42 | 46 |
43 .underlined-list .one-half:nth-child(2) a | 47 .underlined-list .one-half:nth-child(2) a |
44 { | 48 { |
45 @media (min-width: $tablet-breakpoint) | 49 @media (min-width: $tablet-breakpoint) |
46 { | 50 { |
47 border-top: 1px dotted $gray; | 51 border-top: 1px dotted $gray; |
48 } | 52 } |
49 } | 53 } |
| 54 |
| 55 // Horizontal List /////////////////////////////////////////////////////////////
/// |
| 56 |
| 57 .horizontal-list |
| 58 { |
| 59 display: inline; |
| 60 list-style: none; |
| 61 } |
| 62 |
| 63 .horizontal-list li |
| 64 { |
| 65 display: inline; |
| 66 list-style: none; |
| 67 } |
| 68 |
| 69 [dir="rtl"] .horizontal-list |
| 70 { |
| 71 padding: 0; |
| 72 } |
LEFT | RIGHT |