Skip to content

Commit 58d3d7d

Browse files
add styling
1 parent 1a19735 commit 58d3d7d

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
._threejs {
2+
// Code blocks
3+
pre, code {
4+
background-color: #f5f5f5;
5+
border-radius: 3px;
6+
padding: 0.2em 0.4em;
7+
}
8+
pre {
9+
padding: 1em;
10+
margin: 1em 0;
11+
overflow: auto;
12+
code {
13+
background: none;
14+
padding: 0;
15+
}
16+
}
17+
// Links
18+
a {
19+
color: #049EF4;
20+
text-decoration: none;
21+
&:hover {
22+
text-decoration: underline;
23+
}
24+
}
25+
// Headings
26+
h2 {
27+
margin-top: 2em;
28+
padding-bottom: 0.3em;
29+
border-bottom: 1px solid #eaecef;
30+
}
31+
h3 {
32+
margin-top: 1.5em;
33+
}
34+
// Tables
35+
table {
36+
border-collapse: collapse;
37+
margin: 1em 0;
38+
width: 100%;
39+
}
40+
th, td {
41+
border: 1px solid #dfe2e5;
42+
padding: 6px 13px;
43+
}
44+
tr:nth-child(2n) {
45+
background-color: #f6f8fa;
46+
}
47+
}

0 commit comments

Comments
 (0)