Skip to content

Commit 5e43219

Browse files
committed
Add style for table and inline code
1 parent 85d85c8 commit 5e43219

File tree

2 files changed

+1224
-2
lines changed

2 files changed

+1224
-2
lines changed
+36-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,36 @@
1-
body,html{padding:0;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;overflow:hidden}h1{font-weight:700}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
1+
body,
2+
html {
3+
padding: 0;
4+
margin: 0;
5+
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell,
6+
Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7+
overflow: hidden;
8+
}
9+
h1 {
10+
font-weight: 700;
11+
}
12+
* {
13+
-webkit-box-sizing: border-box;
14+
-moz-box-sizing: border-box;
15+
box-sizing: border-box;
16+
}
17+
18+
table {
19+
border-style: hidden;
20+
}
21+
22+
th,
23+
tr,
24+
td {
25+
padding: 0px 4px;
26+
border-width: 1px;
27+
border-color: gray;
28+
border-style: dashed;
29+
}
30+
31+
code.inline-code,
32+
code.inline-verbatim {
33+
border-radius: 5px;
34+
border: 1px solid #bcbec0;
35+
padding: 2px;
36+
}

0 commit comments

Comments
 (0)