Skip to content

Commit d5173d1

Browse files
committed
archive
1 parent d744a37 commit d5173d1

File tree

2 files changed

+182
-0
lines changed

2 files changed

+182
-0
lines changed

0.17/dark.css

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
/* Style sheet for Markdeep that corresponds closely to the default Latex article format
2+
Put the following in your Markdeep document to use this:
3+
4+
<link rel="stylesheet" href="https://casual-effects.com/markdeep/latest/dark.css">
5+
*/
6+
7+
8+
@import url('https://fonts.googleapis.com/css?family=Teko:700');
9+
10+
body {
11+
background: #000;
12+
color: #ccc;
13+
font-family: Arial, Helvetica, "sans serif";
14+
text-align: left;
15+
}
16+
17+
.md div.title {
18+
color: #d6ab62;
19+
font-family: Teko, Arial;
20+
font-size: 200%;
21+
background: -webkit-linear-gradient(#f9deae, #a87215);
22+
-webkit-background-clip: text;
23+
-webkit-text-fill-color: transparent;
24+
}
25+
26+
.md a:link, .md a:visited{
27+
color:#6dafff;
28+
font-family: Arial, Helvetica, "sans serif";
29+
}
30+
31+
.md hr {
32+
height: 0px;
33+
border: none;
34+
border-top: 0.1pt solid #777;
35+
}
36+
37+
.md h1, .md h2, .md h3, .md h4, .md h5, .md h6, .md div.nonumberh1, .md div.nonumberh2,.md div.nonumberh3, .md div.nonumberh4, .md div.nonumberh5, .md div.nonumberh6 {
38+
color: #bc9249;
39+
border-color: #bc9249;
40+
font-family: Teko, Arial;
41+
font-size: 150%;
42+
padding-bottom: 0px;
43+
background: -webkit-linear-gradient(#f9deae, #a87215);
44+
-webkit-background-clip: text;
45+
-webkit-text-fill-color: transparent;
46+
}
47+
48+
.md svg.diagram {
49+
stroke: #ccc;
50+
fill: #ccc;
51+
}
52+
53+
.md svg.diagram .opendot {
54+
fill: #000;
55+
}
56+
57+
.md .listing {
58+
background: #ddd;
59+
}
60+
61+
.md .tilde code {
62+
color: #000;
63+
}
64+
65+
.md .backtick code {
66+
color: #000;
67+
}
68+
69+
div.markdeepFooter, div.markdeepFooter a {
70+
color: #bc9249 !important;
71+
}

0.17/latex.css

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
/* Style sheet for Markdeep that corresponds closely to the default Latex article format
2+
Put the following in your Markdeep document to use this:
3+
4+
<link rel="stylesheet" href="https://casual-effects.com/markdeep/latest/latex.css">
5+
*/
6+
7+
body {
8+
max-width: 440px;
9+
font-size: 12.5px;
10+
color: #000;
11+
}
12+
13+
.md div.title {
14+
font-family: Palatino,Georgia,"Times New Roman",serif;
15+
font-weight: normal;
16+
font-size: 24px;
17+
padding-top: 170px;
18+
padding-bottom: 12px;
19+
}
20+
21+
@media print {
22+
body {
23+
max-width: 64%;
24+
}
25+
26+
.md div.title {
27+
padding-top: 150px;
28+
}
29+
}
30+
31+
.md div.subtitle {
32+
font-size: 15px;
33+
padding-bottom: 12px;
34+
}
35+
36+
.md h1, .md div.nonumberh1 {
37+
font-family: Palatino,Georgia,"Times New Roman",serif;
38+
border: none;
39+
font-size: 18px;
40+
color: #000;
41+
}
42+
43+
.md h2, .md div.nonumberh2 {
44+
font-family: Palatino,Georgia,"Times New Roman",serif;
45+
border: none;
46+
font-size: 15px;
47+
color: #000;
48+
}
49+
50+
.md sup {
51+
vertical-align: baseline;
52+
position: relative;
53+
top: -0.4em;
54+
}
55+
56+
.md sub {
57+
top: 0.4em;
58+
}
59+
60+
.md h3, .md h4, .md h5, .md h6, .md div.nonumberh3, .md div.nonumberh4, .md div.nonumberh5, .md div.nonumberh6 {
61+
font-family: Palatino,Georgia,"Times New Roman",serif;
62+
border: none;
63+
font-size: 14px;
64+
color: #000;
65+
}
66+
67+
.md div.imagecaption {
68+
font-style: normal;
69+
}
70+
71+
.md hr {
72+
height: 0px;
73+
border: none;
74+
border-top: 0.1pt solid #777;
75+
}
76+
77+
.md div.endnote {
78+
font-size: 11px;
79+
}
80+
81+
.md div.bib b {
82+
font-weight: normal;
83+
}
84+
85+
.md code {
86+
font-size: 82%;
87+
}
88+
89+
.md svg.diagram {
90+
zoom: 80%;
91+
}
92+
93+
94+
.md ul li.asterisk:before, .md ul li.minus:before {
95+
content: "●";
96+
display: block;
97+
float: left;
98+
width: 1.2em;
99+
margin-left: -18px;
100+
}
101+
102+
.md ul li.asterisk, .md ul li.minus {
103+
list-style-type: none;
104+
margin-bottom: 10px;
105+
padding-left: 4pt;
106+
}
107+
108+
.md ol li {
109+
margin-bottom: 10px;
110+
padding-left: 4pt;
111+
}

0 commit comments

Comments
 (0)