forked from ifm/developerportal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadme.css
More file actions
40 lines (34 loc) · 630 Bytes
/
readme.css
File metadata and controls
40 lines (34 loc) · 630 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
#readme h2 {
font-size: 1.5em;
}
#readme h4 {
font-size: 1em;
}
#readme table {
display: block;
width: max-content;
max-width: 100%;
overflow: auto;
border-spacing: 0;
border-collapse: collapse;
}
#readme table tr {
background-color: #fff;
border-top: 1px solid #c6cbd1;
}
#readme table td,
#readme table th {
padding: 6px 13px;
border: 1px solid #dfe2e5;
}
#readme table tr:nth-child(2n) {
background-color: #f6f8fa;
}
#readme pre {
padding: 16px;
overflow: auto;
font-size: 85%;
line-height: 1.45;
background-color: #f6f8fa;
border-radius: 6px;
}