diff --git a/css/solarized-all-sites-dark.css b/css/solarized-all-sites-dark.css index 8f94914..0557e35 100644 --- a/css/solarized-all-sites-dark.css +++ b/css/solarized-all-sites-dark.css @@ -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; diff --git a/css/solarized-all-sites-light.css b/css/solarized-all-sites-light.css index 081f0b1..970c438 100644 --- a/css/solarized-all-sites-light.css +++ b/css/solarized-all-sites-light.css @@ -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; diff --git a/css/solarized-planet.emacsen.org-dark.css b/css/solarized-planet.emacsen.org-dark.css new file mode 100644 index 0000000..a3b7e38 --- /dev/null +++ b/css/solarized-planet.emacsen.org-dark.css @@ -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; +} diff --git a/css/solarized-planet.emacsen.org-light.css b/css/solarized-planet.emacsen.org-light.css new file mode 100644 index 0000000..8f0ef16 --- /dev/null +++ b/css/solarized-planet.emacsen.org-light.css @@ -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; +} diff --git a/sites/planet.emacsen.org.styl b/sites/planet.emacsen.org.styl new file mode 100644 index 0000000..0cd7e37 --- /dev/null +++ b/sites/planet.emacsen.org.styl @@ -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 \ No newline at end of file