Add planet.emacsen.org

pull/4/head
Adam Porter 9 years ago
parent 3d9491a084
commit c463d9958a

@ -795,6 +795,41 @@ table.wikitable {
table.wikitable > * > tr > th {
background-color: #073642 !important;
}
div#page div#header {
background-color: #002b36 !important;
}
div#page div#header a {
color: #6c71c4 !important;
}
.post {
background-color: #002b36 !important;
}
.post * {
overflow: auto !important;
}
.post h2 {
background-color: #073642 !important;
}
.post h2 a {
color: #93a1a1 !important;
}
.post div.entry {
background-color: #002b36 !important;
color: #839496 !important;
}
.post div.entry blockquote {
background-color: #073642 !important;
}
.post div.entry kbd {
background-color: #073642 !important;
border-color: #586e75 !important;
box-shadow: none !important;
color: #93a1a1 !important;
text-shadow: 0px 1px 0px #000 !important;
}
.post pre.mode-line {
overflow: visible !important;
}
hr {
background-color: #094352 !important;
color: #094352 !important;

@ -795,6 +795,41 @@ table.wikitable {
table.wikitable > * > tr > th {
background-color: #eee8d5 !important;
}
div#page div#header {
background-color: #fdf6e3 !important;
}
div#page div#header a {
color: #6c71c4 !important;
}
.post {
background-color: #fdf6e3 !important;
}
.post * {
overflow: auto !important;
}
.post h2 {
background-color: #eee8d5 !important;
}
.post h2 a {
color: #586e75 !important;
}
.post div.entry {
background-color: #fdf6e3 !important;
color: #657b83 !important;
}
.post div.entry blockquote {
background-color: #eee8d5 !important;
}
.post div.entry kbd {
background-color: #eee8d5 !important;
border-color: #93a1a1 !important;
box-shadow: none !important;
color: #586e75 !important;
text-shadow: 0px 1px 0px #000 !important;
}
.post pre.mode-line {
overflow: visible !important;
}
hr {
background-color: #e9e1c8 !important;
color: #e9e1c8 !important;

@ -0,0 +1,35 @@
div#page div#header {
background-color: #002b36 !important;
}
div#page div#header a {
color: #6c71c4 !important;
}
.post {
background-color: #002b36 !important;
}
.post * {
overflow: auto !important;
}
.post h2 {
background-color: #073642 !important;
}
.post h2 a {
color: #93a1a1 !important;
}
.post div.entry {
background-color: #002b36 !important;
color: #839496 !important;
}
.post div.entry blockquote {
background-color: #073642 !important;
}
.post div.entry kbd {
background-color: #073642 !important;
border-color: #586e75 !important;
box-shadow: none !important;
color: #93a1a1 !important;
text-shadow: 0px 1px 0px #000 !important;
}
.post pre.mode-line {
overflow: visible !important;
}

@ -0,0 +1,35 @@
div#page div#header {
background-color: #fdf6e3 !important;
}
div#page div#header a {
color: #6c71c4 !important;
}
.post {
background-color: #fdf6e3 !important;
}
.post * {
overflow: auto !important;
}
.post h2 {
background-color: #eee8d5 !important;
}
.post h2 a {
color: #586e75 !important;
}
.post div.entry {
background-color: #fdf6e3 !important;
color: #657b83 !important;
}
.post div.entry blockquote {
background-color: #eee8d5 !important;
}
.post div.entry kbd {
background-color: #eee8d5 !important;
border-color: #93a1a1 !important;
box-shadow: none !important;
color: #586e75 !important;
text-shadow: 0px 1px 0px #000 !important;
}
.post pre.mode-line {
overflow: visible !important;
}

@ -0,0 +1,38 @@
div#page div#header
background-color()
a
// Since the Emacs icon is purple...
color violet
.post
background-color()
*
// Not sure why they have overflow set to scroll, which causes
// scrollbars on every div, even when there's no overflow.
// But this fixes it.
overflow auto i
h2
background-color highlight
a
color emphasized
div.entry
background-color()
color()
blockquote
background-color highlight
kbd
background-color highlight
border-color comment
box-shadow none i
color emphasized
text-shadow 0px 1px 0px black i
pre.mode-line
// Looks like this div will scroll a lot, but having a scroll
// bar is really annoying. Just set it to visible for now.
overflow visible i
Loading…
Cancel
Save