-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangelog.css
More file actions
44 lines (39 loc) · 812 Bytes
/
Copy pathchangelog.css
File metadata and controls
44 lines (39 loc) · 812 Bytes
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
34
35
36
37
38
39
40
41
42
43
44
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
summary {
font-weight: bold;
cursor: pointer;
user-select: none;
border-style: solid;
border-width: 1px;
border-color: grey;
border-radius: 5px;
padding: 10px;
background-color: lightgrey;
position: relative;
}
summary::after {
content: "+";
position: absolute;
font-size: 20px;
line-height: 20px;
right: 5px;
}
details[open] summary {
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
details[open] summary::after {
content: "−";
}
ul {
margin: 0px;
border-style: solid;
border-width: 1px;
border-color: grey;
border-radius: 5px;
border-top: none;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}