blob: 515f5bdfdd9372ee27fbaec88826898a960c75b5 (
plain)
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
115
116
117
118
119
120
121
122
123
124
125
|
.artemis {
font-family: sans-serif;
line-height: 1.6;
font-size: 18px;
color: #fbf5ef;
background-color: #272744;
margin: 1em auto;
max-width: 750px;
padding: 0 0.55em
}
.artemis h1,h2,h3 {
line-height: 1.2
}
.artemis h1 {
margin-top: 1em;
margin-bottom: 0.34em
}
.artemis h2 {
margin-top: 1.25em;
margin-bottom: 0.41em
}
.artemis h3 {
margin-top: 1.5em;
margin-bottom: 0.5em
}
.artemis hr {
color: #494d7e;
background-color: #494d7e;
border: none;
height: 2px
}
.artemis a {
color: #f2d3ab
}
.artemis a:visited {
color: #f2d3ab
}
.artemis time {
font-weight: bold
}
.artemis table {
width: 100%;
outline: none;
border-spacing: 0px
}
.artemis th,td {
padding-left: 0.7em;
padding-right: 0.7em;
padding-top: 0.4em;
padding-bottom: 0.4em
}
.artemis table,th,td {
border: 1px solid #494d7e
}
.artemis code {
font-family: monospace
}
.artemis :not(pre) code {
background-color: #494d7e;
padding-left: 0.1em;
padding-right: 0.1em;
border-radius: 2px
}
.artemis img {
border: 0.1em solid #494d7e
}
.artemis video {
border: 0.1em solid #494d7e
}
.artemis img.right {
float: right;
margin-left: 1em
}
.artemis img.left {
float: left;
margin-right: 0.5em
}
.artemis img.full {
width: 100%;
height: auto
}
.artemis img.half {
width: 50%;
height: auto
}
.artemis img.emoji {
width: auto;
height: 0.75em;
border: none
}
.artemis pre {
font-family: monospace;
line-height: 1.45;
overflow-x: auto;
background-color: #494d7e;
padding: 0.2em;
border-radius: 2px
}
.artemis pre code {
font-size: 0.8em;
padding: 0.2em;
display: block
}
|