forked from bustEXZ/JSQ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsection.css
More file actions
87 lines (71 loc) · 1019 Bytes
/
section.css
File metadata and controls
87 lines (71 loc) · 1019 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
section {
width: 95%;
margin: 0.5rem auto;
content-visibility: auto;
}
section.center p {
text-align: center;
margin: 0.5rem 0;
}
h2 {
margin: 0.5rem 0;
font-size: 1.15rem;
}
h3 {
margin: 0.5rem 0;
font-size: 1.05rem;
}
ul {
list-style: none;
padding-left: 2rem;
}
ol {
padding-left: 2.5rem;
}
li {
text-align: left;
letter-spacing: 0.75px;
line-height: 1.25em;
}
details {
margin: 0.5rem 0;
}
details > *:not(summary) {
display: none;
}
details[open] > * {
display: block;
}
summary {
font-size: 1.05rem;
outline: none;
user-select: none;
cursor: pointer;
}
h4 {
font-size: 1.05rem;
margin: 0.5rem 0;
}
p {
padding: 0 0.5rem;
text-align: left;
}
section a {
display: block;
margin: 0.5rem 0;
text-decoration: none;
color: blue;
padding: 0.5rem 0;
}
section h3 a {
margin: 0;
padding: 0;
}
section a:nth-child(even) {
background: #eee;
border-radius: 4px;
}
section h3 a:nth-child(even) {
background: none;
border-radius: none;
}