Blue Shame Theme ( Change Background Color )

Started by coldy316, February 10, 2015, 09:48:10 PM

Previous topic - Next topic

coldy316

I'm trying to change the background color of the blue shame theme but having trouble in locating it
in the index.css section. here is a screen shot of what I'm dealing with.

Would you believe it that i live in gods country
Australia

coldy316

blue shame index.css


/* Styles for the general looks for the Curve theme.
------------------------------------------------------- */

/* Normal, standard links. */
a:link, a:visited
{
   color: #0074AE;
   text-decoration: none;
}
a:hover
{
   text-decoration: underline;
   cursor: pointer;
}

/* Links that open in a new window. */
a.new_win:link, a.new_win:visited
{
   color: #0074AE;
   text-decoration: none;
}
a.new_win:hover
{
   text-decoration: underline;
}

/* Tables should show empty cells. */
table
{
   empty-cells: show;
   border-collapse: separate;
   border-spacing: 0;
}

/* Set a fontsize that will look the same in all browsers. */
body
{
   background: #E9EEF2;
   font: 78%/130% "Verdana", "Arial", "Helvetica", sans-serif;
   margin: 0;
   padding: 0;
}

/* Help popups require a different styling of the body element. */
body#help_popup
{
   padding: 1em;
}

/* use dark grey for the text, leaving #000 for headers etc */
body, td, th, tr
{
   color: #444;
}

/* This division wraps the entire forum when a forum width is set. */
div#wrapper
{
   margin: -100px auto 0;
   min-width: 764px;
   max-width: 2300px;
}

/* lets give all forms zero padding/margins */
form
{
   padding: 0;
   margin: 0;
}

/* We can style the different types of input buttons to be uniform throughout different browsers and their color themes.
   .button_submit - covers input[type=submit], input[type=button], button[type=submit] and button[type=button] in all browsers
   .button_reset  - covers input[type=reset] and button[type=reset] throughout all browsers
   .input_check   - covers input[type=checkbox] throughout all browsers
   .input_radio   - covers input[type=radio] throughout all browsers
   .input_text    - covers input[type=text] throughout all browsers
   .input_file    - covers input[type=file] throughout all browsers
*/

input, button, select, textarea
{
   font: 95%/115% verdana, Helvetica, sans-serif;
   color: #444;
   background: #fcfcfc;
   border: 1px solid #86aacc;
   padding: 2px;
   border-radius: 2px;
}

input
{
   height: 15px;
}

/* Select elements look horrible with the extra padding, so leave them unpadded. */
select
{
   padding: 0;
}

/* Add some padding to the options instead. */
select option
{
   padding: 1px;
}

/* The font size of textareas should be just a little bit larger. */
textarea
{
   font: 100%/130% verdana, Helvetica, sans-serif;
}

/* Buttons should be styled a bit differently, in order to make them look more button'ish. */
.button_submit, .button_reset
{
   background-color: #2797d1;
   border: 1px solid #21668d;
   box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset;
   color: #fff;
   text-shadow: 0 1px 0 rgba(0,0,0,0.4);
   transition: all 0.3s ease-in-out 0.3s;
   padding: 5px;
   border-radius: 3px;
   cursor: pointer;
   font-weight: normal;
   height: auto !important;
}
input:hover, textarea:hover, button:hover, select:hover
{
   border: 1px solid #454545;
}
.button_submit:hover, .button_reset:hover
{
   box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
input:focus, textarea:focus, button:focus, select:focus
{
   border: 1px solid #454545;
}

/* All input elements that are checkboxes or radio buttons shouldn't have a border around them. */
input.input_check, input.input_radio
{
   border: none;
   background: none;
}
h3.catbg input.input_check
{
   margin: 9px 7px 0 7px;
}

/* Give disabled text input elements a different background color. */
input[disabled].input_text
{
   background-color: #eee;
}

/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
   height: 1px;
   border: 0;
   color: #ccc;
   background-color: #ccc;
}

/* By default set the color on these tags as #000. */
h1, h2, h3, h4, h5, h6
{
   color: #000;
   font-size: 1em;
   margin: 0;
   padding: 0;
}

/* Fieldsets are used to group elements. */
fieldset
{
   border: 1px solid #c4c4c4;
   padding: 1em;
   margin: 0 0 0.5em 0;
}
fieldset legend
{
   font-weight: bold;
   color: #444;
}
/* No image should have a border when linked. */
a img
{
   border: 0;
}

/* Define strong as bold, and em as italics */
strong
{
   font-weight: bold;
}

em
{
   font-style: italic;
}
/* Alternative for u tag */
.underline
{
   text-decoration: underline;
}



/* Common classes to easy styling.
------------------------------------------------------- */

.floatright
{
   float: right;
}
.floatleft
{
   float: left;
}

.flow_auto
{
   overflow: auto;
}
.flow_hidden
{
   overflow: hidden;
}
.flow_hidden .windowbg, .flow_hidden .windowbg2
{
   margin-top: 2px;
}
.clear
{
   clear: both;
}
.clear_left
{
   clear: left;
}
.clear_right
{
   clear: right;
}

/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
.smalltext, tr.smalltext th
{
   font-size: 0.85em;
   font-family: verdana, sans-serif;
}
.middletext
{
   font-size: 0.9em;
   line-height: 1em;
   font-family: verdana, sans-serif;
}
.normaltext
{
   font-size: 1em;
   line-height: 1.2em;
}
.largetext
{
   font-size: 1.4em;
}
.centertext
{
   margin: 0 auto;
   text-align: center;
}
.righttext
{
   margin-left: auto;
   margin-right: 0;
   text-align: right;
}
.lefttext
{
   margin-left: 0;
   margin-right: auto;
   text-align: left;
}
.double_height
{
   line-height: 2em;
}
/* some common padding styles */
.padding
{
   padding: 0.7em;
}
.main_section, .lower_padding
{
   padding-bottom: 0.5em;
}
/* a quick reset list class. */
ul.reset, ul.reset li
{
   padding: 0;
   margin: 0;
   list-style: none;
}



/* Some BBC related styles.
------------------------------------------------------- */

/* A quote, perhaps from another post. */
blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote
{
   font-size: x-small;
   color: #000;
   line-height: 1.4em;
   background: url(../images/theme/quote.png) 0.1em 0.1em no-repeat;
   border-top: 2px solid #99A;
   border-bottom: 2px solid #99A;
   padding: 1.1em 1.4em;
   margin: 0.1em 0 0.3em 0;
   overflow: auto;
}

/* Alterate blockquote stylings */
blockquote.bbc_standard_quote
{
   background-color: #d7daec;
}
blockquote.bbc_alternate_quote
{
   background-color: #e7eafc;
}

/* A code block - maybe PHP ;). */
code.bbc_code
{
   display: block;
   font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
   font-size: x-small;
   background: #eef;
   border-top: 2px solid #999;
   border-bottom: 2px solid #999;
   line-height: 1.5em;
   padding: 3px 1em;
   overflow: auto;
   white-space: nowrap;
   /* Show a scrollbar after about 24 lines. */
   max-height: 24em;
}

/* The "Quote:" and "Code:" header parts... */
.codeheader, .quoteheader
{
   color: #666;
   font-size: x-small;
   font-weight: bold;
   padding: 0 0.3em;
}

/* For links to change the code stuff... */
.codeoperation
{
   font-weight: normal;
}

/* Styling for BBC tags */
.bbc_link:link, .bbc_link:visited
{
   border-bottom: 1px solid #A8B6CF;
}
.bbc_link:hover
{
   text-decoration: none;
   border-bottom: 1px solid #346;
}
.bbc_size
{
   line-height: 1.4em;
}
.bbc_color a
{
   color: inherit;
}
.bbc_img
{
   border: 0;
}
.bbc_table
{
   font: inherit;
   color: inherit;
}
.bbc_table td
{
   font: inherit;
   color: inherit;
   vertical-align: top;
}
.bbc_u
{
   text-decoration: underline;
}
.bbc_list
{
   text-align: left;
}
.bbc_tt
{
   font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
}

/* Generally, those [?] icons.  This makes your cursor a help icon. */
.help
{
   cursor: help;
}

/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction
{
   color: red;
}

/* Highlighted text - such as search results. */
.highlight
{
   font-weight: bold;
   color: #ff7200 !important;
   font-size: 1.1em;
}

/* A more discreet highlight color, for selected membergroups etc. */
.highlight2
{
   background-color: #D1E1EF;
   color: #000 !important;
}






/* Generic, mostly color-related, classes.
------------------------------------------------------- */

.titlebg, .titlebg2, tr.titlebg th, tr.titlebg td, tr.titlebg2 td
{
   color: #555;
   text-shadow: 0 1px 0 rgba(255,255,255,0.3);
   font-family: arial, helvetica, sans-serif;
   font-size: 1.1em;
   font-weight: bold;
   background: #ffffff;
   background: -moz-linear-gradient(top, #ffffff 0%, #d0dbe0 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d0dbe0));
   background: -webkit-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -o-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -ms-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: linear-gradient(to bottom, #ffffff 0%,#d0dbe0 100%);
   box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset;
   border-color: #d0d0d0;
   border-width: 1px 0;
   border-style: solid;
}
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
   color: #ededed;
   text-shadow: 0 1px 0 rgba(0,0,0,0.6);
   font-family: arial, helvetica, sans-serif;
   font-size: 1.1em;
   font-weight: bold;
   background: #0099e5;
   background: -moz-linear-gradient(top, #0099e5 30%, #0074ad 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(30%,#0099e5), color-stop(100%,#0074ad));
   background: -webkit-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: -o-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: -ms-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: linear-gradient(to bottom, #0099e5 30%,#0074ad 100%);
   box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset;
   border-color: #005580;
   border-width: 1px 0;
   border-style: solid;
}

/* adjust the table versions of headers */
tr.titlebg th, tr.titlebg2 th, td.titlebg, td.titlebg2, tr.catbg th, tr.catbg2 th, td.catbg, td.catbg2
{
   padding: 0 6px;
}
tr.titlebg th a:link, tr.titlebg th a:visited, tr.titlebg2 td a:link, tr.titlebg2 td a:visited
{
   color: #555;
   text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}
tr.catbg th a:link, tr.catbg th a:visited, tr.catbg2 td a:link, tr.catbg2 td a:visited
{
   color: #ededed;
   text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}
.catbg select
{
   height: 1.5em;
   font-size: 0.85em;
}

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg, #preview_body
{
   color: #444;
   background-color: #ecf6fb;
   border: 1px solid rgba(0, 85, 128, 0.2);
}
.windowbg2
{
   color: #444;
   background-color: #ecf6fb;
   border: 1px solid rgba(0, 85, 128, 0.2);
}
.windowbg3
{
   color: #444;
   background-color: #ecf6fb;
   border: 1px solid rgba(0, 85, 128, 0.2);
}

/* the page navigation area */
.pagesection
{
   font-size: 0.9em;
   padding: 0.2em;
   overflow: hidden;
   margin-bottom: 1px;
}
div.pagesection div.floatright input
{
   margin-top: 3px;
}

.pagelinks
{
    background-color: rgba(214, 239, 247, 0.2);
   border-radius: 2px;
    float: left;
    height: 25px;
    line-height: 25px;
    padding: 0 3px;
}

.pagelinks a:hover
{
   text-decoration: none;
}
.pagelinks > strong
{
   background-color: rgba(0, 153, 229, 1);
   color: #eee;
   padding: 4px;
   margin: 0 1px;
}
a.navPages, .pagelinks > a > strong
{
   background-color: rgba(0, 153, 229, 0.4);
   color: #eee;
   padding: 4px;
   margin: 0 1px;
}
a.navPages:hover, .pagelinks > a > strong:hover
{
   background-color: rgba(0, 153, 229, 0.8);
   text-decoration: none;
   color: #fff;
}

/* Colors for background of posts requiring approval */
.approvebg
{
   color: #000;
   background-color: #ffeaea;
}
.approvebg2
{
   color: #000;
   background-color: #fff2f2;
}

/* Color for background of *topics* requiring approval */
.approvetbg
{
   color: #000;
   background-color: #e4a17c;
}
.approvetbg2
{
   color: #000;
   background-color: #f3bd9f;
}

/* Sticky topics get a different background */
.stickybg
{
   background: #e8dfcf;
}
.stickybg2
{
   background: #e8dfcf;
}

/* Locked posts get a different shade, too! */
.lockedbg
{
   background: #cfdde8;
   font-style: italic;
}
.lockedbg2
{
   background: #cfdde8;
   font-style: italic;
}

/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
   overflow: auto;
   line-height: 1.4em;
   padding: 0.1em 0;
}

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature, .attachments
{
   width: 98%;
   overflow: auto;
   clear: right;
   padding: 1em 0 3px 0;
   border-top: 1px solid #aaa;
   line-height: 1.4em;
   font-size: 0.85em;
}
.custom_fields_above_signature
{
   width: 98%;
   clear: right;
   padding: 1em 0 3px 0;
   border-top: 1px solid #aaa;
   line-height: 1.4em;
   font-size: 0.85em;
}

/* Sometimes there will be an error when you post */
.error
{
   color: red;
}

/* Messages that somehow need to attract the attention. */
.alert
{
   color: red;
}

/* Calendar colors for birthdays, events and holidays */
.birthday
{
   color: #920ac4;
}

.event
{
   color: #078907;
}

.holiday
{
   color: #000080;
}

/* Colors for warnings */
.warn_mute
{
   color: red;
}

.warn_moderate
{
   color: #ffa500;
}

.warn_watch, .success
{
   color: green;
}

a.moderation_link, a.moderation_link:visited
{
   color: red;
   font-weight: bold;
}

.openid_login
{
   background: white url(../images/openid.gif) no-repeat;
   padding-left: 18px;
}

/* a descriptive style */
.description, .description_board, .plainbox
{
   padding: 0.5em 1em;
   font-size: 0.9em;
   line-height: 1.4em;
   border: 1px solid rgba(0, 85, 128, 0.2);
   background-color: rgba(214, 239, 247, 0.5);
   margin: 0.2em 1px 1em 1px;
   text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}
.description_board
{
   margin: 1em 1px 0 1px;
}

/* an informative style */
.information
{
   padding: 0.5em 1em;
   font-size: 0.9em;
   line-height: 1.3em;
   border: 1px solid rgba(0, 85, 128, 0.2);
   background-color: rgba(214, 239, 247, 0.5);
   margin: 0.2em 1px 1em 1px;
   text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}
.information p
{
   padding: 1em;
   margin: 0;
}
p.para2
{
   padding: 1em 0 3.5em 0;
   margin: 0;
}
/* AJAX notification bar
------------------------------------------------------- */



/* Lists with settings use these a lot.
------------------------------------------------------- */
dl.settings
{
   clear: right;
   overflow: auto;
   margin: 0 0 10px 0;
   padding: 0;
}
dl.settings dt
{
   width: 40%;
   float: left;
   margin: 0 0 10px 0;
   padding: 0;
   clear: both;
}
dl.settings dt.settings_title
{
   width: 100%;
   float: none;
   margin: 0 0 10px 0;
   padding: 5px 0 0 0;
   font-weight: bold;
   clear: both;
}
dl.settings dt.windowbg
{
   width: 98%;
   float: left;
   margin: 0 0 3px 0;
   padding: 0 0 5px 0;
   clear: both;
}
dl.settings dd
{
   width: 56%;
   float: right;
   overflow: auto;
   margin: 0 0 3px 0;
   padding: 0;
}
dl.settings img
{
   margin: 0 10px 0 0;
}
/* help icons */
dl.settings dt a img
{
   position: relative;
   top: 2px;
}

/* Styles for rounded headers.
------------------------------------------------------- */
h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg
{
   overflow: hidden;
   height: 31px;
   line-height: 31px;
   font-size: 1.2em;
   font-weight: bold;
}
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: #ededed;
   text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}
h3.catbg2 a, h3.catbg2
{
   color: #feb;
}
h3.catbg a:hover, h4.catbg a:hover, .table_list tbody.header td a:hover
{
   color: #04557e;
   text-shadow: 0 1px 0 rgba(255,255,255,0.3);
   text-decoration: none;
}
h3.catbg2 a:hover
{
   color: #fff;
   text-decoration: none;
}
h3.titlebg a, h3.titlebg, h4.titlebg, h4.titlebg a
{
   color: #555;
   text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}
h3.titlebg a:hover, h4.titlebg a:hover
{
   color: #53616f;
   text-decoration: none;
}
h3.catbg img.icon, h4.titlebg img.icon
{
   vertical-align: middle;
   margin: -2px 5px 0 0;
}
h4.catbg a.toggle img
{
   vertical-align: middle;
   margin: -2px 5px 0 5px;
}
h4.catbg, h4.catbg2 , h3.catbg , h3.catbg2 , .table_list tbody.header td.catbg
{
   background: #0099e5;
   background: -moz-linear-gradient(top, #0099e5 30%, #0074ad 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(30%,#0099e5), color-stop(100%,#0074ad));
   background: -webkit-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: -o-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: -ms-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: linear-gradient(to bottom, #0099e5 30%,#0074ad 100%);
   padding: 0 9px;
}
h4.titlebg, h3.titlebg
{
   background: #ffffff;
   background: -moz-linear-gradient(top, #ffffff 0%, #d0dbe0 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d0dbe0));
   background: -webkit-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -o-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -ms-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: linear-gradient(to bottom, #ffffff 0%,#d0dbe0 100%);
   padding: 0 9px;
}
h4.titlebg img.icon
{
   float: left;
   margin: 5px 8px 0 0;
}
div.cat_bar
{
   background: #0099e5;
   background: -moz-linear-gradient(top, #0099e5 30%, #0074ad 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(30%,#0099e5), color-stop(100%,#0074ad));
   background: -webkit-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: -o-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: -ms-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: linear-gradient(to bottom, #0099e5 30%,#0074ad 100%);
   border-width: 0 1px 1px;
   border-color: #005580;
   border-style: solid;
   box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset;
   border-radius: 3px 3px 0 0;
   height: 31px;
   overflow: hidden;
}
div.title_bar
{
   background: #ffffff;
   background: -moz-linear-gradient(top, #ffffff 0%, #d0dbe0 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d0dbe0));
   background: -webkit-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -o-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -ms-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: linear-gradient(to bottom, #ffffff 0%,#d0dbe0 100%);
   border-width: 0 1px 1px;
   border-color: #d0d0d0;
   border-style: solid;
   box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset;
   border-radius: 3px 3px 0 0;
   height: 31px;
   overflow: hidden;
}

/* rounded bars needs a different background here */

div.title_barIC
{
   background: #ffffff;
   background: -moz-linear-gradient(top, #ffffff 0%, #d0dbe0 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d0dbe0));
   background: -webkit-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -o-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -ms-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: linear-gradient(to bottom, #ffffff 0%,#d0dbe0 100%);
   border-width: 0 1px 1px;
   border-color: #d0d0d0;
   border-style: solid;
   box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset;
   border-radius: 3px 3px 0 0;
   height: 31px;
   overflow: hidden;
}
div.title_barIC h4.titlebg
{
   background: #ffffff;
   background: -moz-linear-gradient(top, #ffffff 0%, #d0dbe0 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d0dbe0));
   background: -webkit-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -o-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -ms-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: linear-gradient(to bottom, #ffffff 0%,#d0dbe0 100%);
   padding: 0 9px;
}
#upshrinkHeaderIC p.pminfo
{
   margin: 0;
   padding: 0.5em;
}
img#upshrink_ic, img#newsupshrink
{
   float: right;
   margin: 10px 5px 0 0;
}
table.table_list a.unreadlink, table.table_list a.collapse
{
   float: right;
}
table.table_list a.collapse
{
   margin: 7px 5px 0 1em;
   height: 31px;
   line-height: 31px;
}

/* The half-round header bars for some tables. */
.table_grid tr.catbg, .table_grid tr.titlebg
{
   font-size: 0.95em;
}
.table_grid tr.catbg th, .table_grid tr.titlebg th
{
   height: 28px;
   line-height: 28px;
}
tr.catbg th.first_th
{
   background: #0099e5;
   background: -moz-linear-gradient(top, #0099e5 30%, #0074ad 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(30%,#0099e5), color-stop(100%,#0074ad));
   background: -webkit-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: -o-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: -ms-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: linear-gradient(to bottom, #0099e5 30%,#0074ad 100%);
}
tr.catbg th.last_th
{
   background: #0099e5;
   background: -moz-linear-gradient(top, #0099e5 30%, #0074ad 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(30%,#0099e5), color-stop(100%,#0074ad));
   background: -webkit-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: -o-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: -ms-linear-gradient(top, #0099e5 30%,#0074ad 100%);
   background: linear-gradient(to bottom, #0099e5 30%,#0074ad 100%);
}
tr.titlebg th.first_th
{
   background: #ffffff;
   background: -moz-linear-gradient(top, #ffffff 0%, #d0dbe0 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d0dbe0));
   background: -webkit-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -o-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -ms-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: linear-gradient(to bottom, #ffffff 0%,#d0dbe0 100%);
}
tr.titlebg th.last_th
{
   background: #ffffff;
   background: -moz-linear-gradient(top, #ffffff 0%, #d0dbe0 100%);
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d0dbe0));
   background: -webkit-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -o-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: -ms-linear-gradient(top, #ffffff 0%,#d0dbe0 100%);
   background: linear-gradient(to bottom, #ffffff 0%,#d0dbe0 100%);
}
.table_grid th.last_th input
{
   margin: 0 2px;
}
.table_grid th.lefttext
{
   padding: 0 0.7em;
}

/* a general table class */
table.table_grid
{
   border-collapse: collapse;
   margin-top: 0.1em;
}
table.table_grid td
{
   padding: 3px;
   border-bottom: 1px solid rgba(0, 85, 128, 0.1);
}

/* GenericList */
.additional_row
{
   padding: 0.5em 0 0.5em 0;
}
table.table_grid thead tr.catbg th
{
   white-space: nowrap;
}

/* table_grid styles for Profile > Show Permissions. */
#permissions table.table_grid  td
{
   padding: 0.4em 0.8em;
   cursor: default;
}

/* Common styles used to add corners to divisions.
------------------------------------------------------- */
.windowbg span.topslice
{
   display: block;
   padding-left: 20px;
   background-color: #ecf6fb;
}
.windowbg span.topslice span
{
   display: block;
   height: 11px;
}
.windowbg span.botslice
{
   display: block;
   padding-left: 20px;
   background-color: #ecf6fb;
   font-size: 5px;
   line-height: 5px;
   margin-bottom: 0.2em;
}
.windowbg span.botslice span
{
   display: block;
   height: 11px;
}

.windowbg2 span.topslice
{
   display: block;
   padding-left: 20px;
   background-color: #ecf6fb;
}
.windowbg2 span.topslice span
{
   display: block;
   height: 11px;
}
.windowbg2 span.botslice
{
   display: block;
   padding-left: 20px;
   background-color: #ecf6fb;
   font-size: 5px;
   line-height: 5px;
   margin-bottom: 0.2em;
}
.windowbg2 span.botslice span
{
   display: block;
   height: 11px;
}
.approvebg span.topslice
{
   display: block;
   padding-left: 20px;
   background-color: #FFEAEA;
}
.approvebg span.topslice span
{
   display: block;
   height: 11px;
}
.approvebg span.botslice
{
   display: block;
   padding-left: 20px;
   background-color: #FFEAEA;
   margin-bottom: 0.2em;
}
.approvebg span.botslice span
{
   display: block;
   height: 11px;
}
.postbg
{
   border-left: 1px solid #7f7f7f;
   border-right: 1px solid #7f7f7f;
}

Would you believe it that i live in gods country
Australia

ARG01

Line 36.

body
{
   background: #E9EEF2;
   font: 78%/130% "Verdana", "Arial", "Helvetica", sans-serif;
   margin: 0;
   padding: 0;
No, I will not offer free downloads to Premium DzinerStuido themes. Please stop asking.

coldy316

Quote from: SimpMode (ARG) on February 11, 2015, 12:17:32 AM
Line 36.

body
{
   background: #E9EEF2;
   font: 78%/130% "Verdana", "Arial", "Helvetica", sans-serif;
   margin: 0;
   padding: 0;



Thank you for your amazing help..

Would you believe it that i live in gods country
Australia

peterwaalker

Thanks. Let me check if it will work for me

Advertisement: