blob: e4b61f2bb3cffe35bd66a1d04285bd6e0e375f9f (
plain)
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
|
@media (min-width: 40em) {
main {
margin: 4em;
}
}
details.program:first-child {
border-top: 1px solid black;
}
details.program {
position: relative;
width: 100%;
border-bottom: 1px solid black;
}
details.program > summary {
list-style: none;
}
details.program > summary::-webkit-details-marker {
display: none;
}
details.program > summary:after {
position: absolute;
right: 1em;
content: '∨';
}
details.program[open] > summary:after {
content: '∧';
bottom: 0;
}
|