-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme-19448e.css
114 lines (95 loc) · 1.43 KB
/
theme-19448e.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
name: Custom Theme
highlightStyle: monokai
color:
primary: "#19448e"
secondary: "#3b3b3b"
tertiary: "#f2f2f2"
quaternary: "#ffffff"
code: "#1a1a1a"
css: |
*/
section {
background-color: #f2f2f2;
color: #3b3b3b;
}
section a:not(.image) {
color: #19448e;
}
.heading,
h1,
h2,
h3,
h4,
h5,
h6 {
color: #19448e;
}
.image {
border: 4px solid #19448e;
border-radius: 10px;
}
.image img {
border-radius: 10px;
}
blockquote {
border-left: 4px solid #19448e;
}
pre {
background-color: #f2f2f2;
color: #1a1a1a;
border-radius: 10px;
padding: 1rem;
overflow-x: auto;
}
code {
background-color: #f2f2f2;
color: #1a1a1a;
padding: 2px;
border-radius: 5px;
}
hr {
border-color: #19448e;
}
ul li:before {
content: "•";
color: #19448e;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
ol li:before {
content: counter(li) ".";
color: #19448e;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
table {
border-collapse: collapse;
width: 100%;
margin: 1rem 0;
}
table,
th,
td {
border: 1px solid #19448e;
}
th,
td {
padding: 0.5rem;
text-align: left;
}
th {
background-color: #19448e;
color: #f2f2f2;
}
thead {
background-color: #19448e;
color: #f2f2f2;
}
tbody tr:nth-child(even) {
background-color: #f2f2f2;
}