-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
65 lines (53 loc) · 932 Bytes
/
style.css
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
body {
line-height: 30px;
font-size: 20px;
font-family: Roboto;
text-align: left;
}
img {
width: 100%;
}
h1 {
margin-top: 100px;
page-break-before: never;
}
code {
background-color: rgba(245,245,245,1);
padding: 3px 8px 3px 8px;
border-radius: 5px;
font-family: Consolas;
}
pre {
background-color: rgba(245,245,245,1);
border-radius: 8px;
margin: 0 10px 0 10px;
padding: 5px 10px 5px 10px;
}
pre code {
background-color: inherit;
padding: 0;
border-radius: 0;
}
a {
color: #4078c0;
text-decoration: none;
}
table, th, td {
border: 2px solid gray;
}
thead {
background-color: lightgray;
display: table-header-group;
}
tfoot {
display: table-row-group;
}
table {
border-collapse: collapse;
}
tr {
page-break-inside: avoid
}
th, td {
padding: 5px;
}