Skip to content

Instantly share code, notes, and snippets.

@dominicgan
Created April 4, 2019 06:24
Show Gist options
  • Save dominicgan/379d66a3e124b24f79bc7c67029952e7 to your computer and use it in GitHub Desktop.
Save dominicgan/379d66a3e124b24f79bc7c67029952e7 to your computer and use it in GitHub Desktop.
Monochrome geekhack css for stylebot
/*
* Remove the colors on geekhack for office use
*/
/* Normal, standard links. */
a:link, a:visited {
color: #333;
}
/* Links that open in a new window. */
a.new_win:link, a.new_win:visited {
color: #333;
}
a.new_win:hover {
text-decoration: underline;
}
/* Tables should show empty cells. */
table {
empty-cells: show;
}
/* Set a fontsize that will look the same in all browsers. */
body {
background: #f9f9f9;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 13.5px;
}
/* use dark grey for the text, leaving #000 for headers etc */
body, td, th, tr {
color: #453D37;
}
input:hover, textarea:hover, button:hover, select:hover {
border: 1px solid #453D37;
}
.button_submit:hover, .button_reset:hover {
border: 1px solid #453D37;
}
input:focus, textarea:focus, button:focus, select:focus {
border: 1px solid #453D37;
}
/* By default set the color on these tags as #000. */
h1, h2, h3, h4, h5, h6 {
color: #4D4239;
}
.more_head, .more_image {
background-color: #D4CECB;
color: #261E18;
}
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th {
color: #4D4239;
}
tr.titlebg th a:link, tr.titlebg th a:visited, tr.titlebg2 td a:link, tr.titlebg2 td a:visited {
color: #4D4239;
}
tr.catbg th a:link, tr.catbg th a:visited, tr.catbg2 td a:link, tr.catbg2 td a:visited {
color: #4D4239;
}
h3.catbg a:link, h3.catbg a:visited, h4.catbg a:link, h4.catbg a:visited, h3.catbg, .table_list tbody.header td, .table_list tbody.header td a {
color: #333;
}
h3.catbg2 a, h3.catbg2 {
color: #4D4239;
}
h3.titlebg a:hover, h4.titlebg a:hover {
color: #000;
text-decoration: none;
}
h4.titlebg, h3.titlebg {
background: #261E18;
}
#main_menu {
background: #261E18;
}
/* the background's first level only */
.dropmenu li a.firstlevel {
border: 1px solid #261E18;
}
.dropmenu li {
background: #261E18;
}
/* the active button */
.dropmenu li a.active {
border: 1px solid #261E18;
}
/* the hover effects */
.dropmenu li a.firstlevel:hover, .dropmenu li:hover a.firstlevel {
border: 1px solid #261E18;
}
.dropmenu li li.additional_items {
background-color: #261E18;
}
.buttonlist ul li a {
color: #261E18;
background: #E0E0E0;
}
.buttonlist ul li a:hover {
background: #666;
}
.buttonlist ul li a span {
background: #E0E0E0;
}
.buttonlist ul li a:hover span {
background: #666;
}
/* the active one */
.buttonlist ul li a.active {
background: #333;
}
.buttonlist ul li a.active span {
background: #333;
}
.buttonlist ul li a.active:hover {
background: #666;
}
.buttonlist ul li a.active:hover span {
background: #666;
}
/* the board title! */
.table_list tbody.content td.info a.subject {
color: #666;
}
ul.quickbuttons a:hover {
color: #666;
}
/*
.windowbg2 span.topslice, .windowbg2 span.topslice span, .windowbg2 span.botslice, .windowbg2 span.botslice span {
background: #555;
}
.windowbg2 {
color: #f4f4f4;
background-color: #555;
}
.windowbg span.topslice, .windowbg span.topslice span, .windowbg span.botslice, .windowbg span.botslice span {
background: #333;
}
.windowbg {
color: #f4f4f4;
background-color: #333;
} */
#header, #header div.frame, #content_section div.frame, #content_section {
background: #f4f4f4;
}
#main_menu a {
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment