Add a sakai stylesheet (#16)

* Add a sakai stylesheet
pull/21/head
Jay Kamat 7 years ago committed by alphapapa
parent 5df9dcb3ec
commit b97f2af089

@ -62,6 +62,8 @@ Install the stylesheet of your choice according to your browser's method (e.g. u
For [[http://planet.emacsen.org][Planet Emacsen]] For [[http://planet.emacsen.org][Planet Emacsen]]
- ~solarized-stackexchange-*.css~ - ~solarized-stackexchange-*.css~
For StackExchange sites. Not all sites are covered, but some of the main ones are. Patches welcome. For StackExchange sites. Not all sites are covered, but some of the main ones are. Patches welcome.
- ~solarized-sakai-*.css~
For sites hosted by [[https://sakaiproject.org/][sakai]], a popular course management program.
** Development :noexport_1: ** Development :noexport_1:
@ -93,4 +95,3 @@ This way, the Solarized color values are loaded first, followed by the dark- or
** License ** License
Really? Come on, it's just some CSS. Just have fun and share! Really? Come on, it's just some CSS. Just have fun and share!

@ -0,0 +1,74 @@
* {
border-color: #657b83 !important;
}
a {
color: #268bd2 !important;
}
a:visited {
color: #6c71c4 !important;
}
body {
background-color: #002b36 !important;
color: #839496 !important;
}
html {
background-color: #002b36 !important;
}
input,
textarea {
background-color: #073642 !important;
color: #839496 !important;
}
blockquote,
pre {
background-color: #073642 !important;
color: #839496 !important;
}
* {
border-color: #657b83 !important;
}
a {
color: #268bd2 !important;
}
a:visited {
color: #6c71c4 !important;
}
body {
background-color: #002b36 !important;
color: #839496 !important;
}
html {
background-color: #002b36 !important;
}
input,
textarea {
background-color: #073642 !important;
color: #839496 !important;
}
tr:hover,
blockquote,
pre {
background-color: #073642 !important;
color: #839496 !important;
}
#toolMenu li {
background-color: #002b36 !important;
}
.navPanel,
.navIntraTool {
background-color: #002b36 !important;
}
.instruction,
.sakaiCopyrightInfo {
color: #839496 !important;
}
.listHier th {
background-color: #094352 !important;
}
ul.makeMenu {
background-color: #094352 !important;
border: 1px solid #094352 !important;
}
tr.external {
background-color: #094352 !important;
}

@ -0,0 +1,74 @@
* {
border-color: #839496 !important;
}
a {
color: #268bd2 !important;
}
a:visited {
color: #6c71c4 !important;
}
body {
background-color: #fdf6e3 !important;
color: #657b83 !important;
}
html {
background-color: #fdf6e3 !important;
}
input,
textarea {
background-color: #eee8d5 !important;
color: #657b83 !important;
}
blockquote,
pre {
background-color: #eee8d5 !important;
color: #657b83 !important;
}
* {
border-color: #839496 !important;
}
a {
color: #268bd2 !important;
}
a:visited {
color: #6c71c4 !important;
}
body {
background-color: #fdf6e3 !important;
color: #657b83 !important;
}
html {
background-color: #fdf6e3 !important;
}
input,
textarea {
background-color: #eee8d5 !important;
color: #657b83 !important;
}
tr:hover,
blockquote,
pre {
background-color: #eee8d5 !important;
color: #657b83 !important;
}
#toolMenu li {
background-color: #fdf6e3 !important;
}
.navPanel,
.navIntraTool {
background-color: #fdf6e3 !important;
}
.instruction,
.sakaiCopyrightInfo {
color: #657b83 !important;
}
.listHier th {
background-color: #e9e1c8 !important;
}
ul.makeMenu {
background-color: #e9e1c8 !important;
border: 1px solid #e9e1c8 !important;
}
tr.external {
background-color: #e9e1c8 !important;
}

@ -0,0 +1,53 @@
// * sakai.styl
// Site-specific rules for sakai websites (t2.gatech.edu is a hosted example)
// ** HTML elements
*
border-color()
a
a()
a:visited
a visited
body
background-color()
color()
html
// Apparently some people set the bgcolor for HTML, not BODY...
background-color()
input
textarea
background-color highlight
color()
tr:hover
blockquote,
pre
background-color highlight
color()
#toolMenu
li
background-color ()
.navPanel
.navIntraTool
background-color ()
.instruction
.sakaiCopyrightInfo
color ()
.listHier
th
background-color color-background-highlight-extra-less
ul.makeMenu
background-color color-background-highlight-extra-less
border 1px solid color-background-highlight-extra-less i
tr.external
background-color color-background-highlight-extra-less
Loading…
Cancel
Save