Rev 14409 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 14409 | Rev 14734 | ||
---|---|---|---|
Line 7... | Line 7... | ||
7 | } |
7 | } |
8 | 8 | ||
9 | 9 | ||
10 | /** |
10 | /** |
11 | * Foundation for Sites by ZURB |
11 | * Foundation for Sites by ZURB |
12 | * Version 6. |
12 | * Version 6.6.1 |
13 | * foundation.zurb.com |
13 | * foundation.zurb.com |
14 | * Licensed under MIT Open Source |
14 | * Licensed under MIT Open Source |
15 | */ |
15 | */ |
16 | /* Accordion styles */ |
16 | /* Accordion styles */ |
17 | .accordion { |
17 | .accordion { |
Line 44... | Line 44... | ||
44 | .accordion-title::before { |
44 | .accordion-title::before { |
45 | position: absolute; |
45 | position: absolute; |
46 | top: 50%; |
46 | top: 50%; |
47 | right: 1rem; |
47 | right: 1rem; |
48 | margin-top: -0.5rem; |
48 | margin-top: -0.5rem; |
49 | content: |
49 | content: "+"; } |
50 | .is-active > .accordion-title::before { |
50 | .is-active > .accordion-title::before { |
51 | content: |
51 | content: "–"; } |
52 | 52 | ||
53 | .accordion-content { |
53 | .accordion-content { |
54 | display: none; |
54 | display: none; |
55 | padding: 1rem; |
55 | padding: 1rem; |
56 | border: 1px solid #e6e6e6; |
56 | border: 1px solid #e6e6e6; |
57 | border-bottom: 0; |
57 | border-bottom: 0; |
58 | background-color: #fefefe; |
58 | background-color: #fefefe; |
59 | color: #0a0a0a; } |
59 | color: #0a0a0a; } |
60 | :last-child > .accordion-content:last-child { |
60 | :last-child > .accordion-content:last-child { |
61 | border-bottom: 1px solid #e6e6e6; } |
61 | border-bottom: 1px solid #e6e6e6; } |
62 | - |