annotate phpBB2/templates/BlackSoul/BlackSoul.css @ 0:ed1308d04df2 moonlitnights

[svn r1] initial import
author rlm
date Fri, 19 Feb 2010 06:24:59 -0500
parents
children
rev   line source
rlm@0 1 /*
rlm@0 2 The original subSilver Theme for phpBB version 2+
rlm@0 3 Created by subBlue design
rlm@0 4 http://www.subBlue.com
rlm@0 5 */
rlm@0 6
rlm@0 7
rlm@0 8 /* General page style. The scroll bar colours only visible in IE5.5+ */
rlm@0 9 body {
rlm@0 10 background-color: #000000;
rlm@0 11
rlm@0 12
rlm@0 13 background: black url(http://www.moonlitnights.org/star-bg.gif);
rlm@0 14
rlm@0 15 scrollbar-face-color: #000000;
rlm@0 16 scrollbar-highlight-color: #C0D2F6;
rlm@0 17 scrollbar-shadow-color: #C0D2F6;
rlm@0 18 scrollbar-3dlight-color: #000000;
rlm@0 19 scrollbar-arrow-color: #C0D2F6;
rlm@0 20 scrollbar-track-color: #000000;
rlm@0 21 scrollbar-darkshadow-color: #000000;
rlm@0 22 }
rlm@0 23
rlm@0 24 /* General font families for common tags */
rlm@0 25 font,th,td,p { font-family: Verdana, Arial, Helvetica, sans-serif }
rlm@0 26 a:link,a:active,a:visited { color : #2AAAA8; }
rlm@0 27 a:hover { text-decoration: underline; color : #2AAAA8; }
rlm@0 28 hr { height: 0px; border: solid #D1D7DC 0px; border-top-width: 1px;}
rlm@0 29
rlm@0 30
rlm@0 31 /* This is the border line & background colour round the entire page */
rlm@0 32 .bodyline { border: 1px #000000 solid; }
rlm@0 33
rlm@0 34 /* This is the outline round the main forum tables */
rlm@0 35 .forumline { background-color: #000000; border: 2px #000000 solid; }
rlm@0 36
rlm@0 37
rlm@0 38 /* Main table cell colours and backgrounds */
rlm@0 39 td.row1 { background-color: #5C5C8E; }
rlm@0 40 td.row2 { background-color: #5C5C8E; }
rlm@0 41 td.row3 { background-color: #5C5C8E; }
rlm@0 42
rlm@0 43
rlm@0 44 /*
rlm@0 45 This is for the table cell above the Topics, Post & Last posts on the index.php page
rlm@0 46 By default this is the fading out gradiated silver background.
rlm@0 47 However, you could replace this with a bitmap specific for each forum
rlm@0 48 */
rlm@0 49 td.rowpic {
rlm@0 50 background-color: #5090D0;
rlm@0 51 background-repeat: repeat-y;
rlm@0 52 }
rlm@0 53
rlm@0 54 /* Header cells - the blue and silver gradient backgrounds */
rlm@0 55 th {
rlm@0 56 color: #000000; font-size: 11px; font-weight : bold;
rlm@0 57 background-color: #DAEAFF; height: 25px;
rlm@0 58
rlm@0 59 }
rlm@0 60
rlm@0 61 td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom {
rlm@0 62 background-color:#5090D0; border: #000000; border-style: solid; height: 28px;
rlm@0 63 }
rlm@0 64
rlm@0 65
rlm@0 66 /*
rlm@0 67 Setting additional nice inner borders for the main table cells.
rlm@0 68 The names indicate which sides the border will be on.
rlm@0 69 Don't worry if you don't understand this, just ignore it :-)
rlm@0 70 */
rlm@0 71 td.cat,td.catHead,td.catBottom {
rlm@0 72 height: 29px;
rlm@0 73 border-width: 0px 0px 0px 0px;
rlm@0 74 }
rlm@0 75 th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
rlm@0 76 font-weight: bold; border: #000000; border-style: solid; height: 28px; }
rlm@0 77 td.row3Right,td.spaceRow {
rlm@0 78 background-color: #DAEAFF; border: #000000; border-style: solid; color: #000000 }
rlm@0 79
rlm@0 80 th.thHead,td.catHead { font-size: 12px; border-width: 0px 0px 0px 0px; }
rlm@0 81 th.thSides,td.catSides,td.spaceRow { border-width: 0px 0px 0px 0px; }
rlm@0 82 th.thRight,td.catRight,td.row3Right { border-width: 0px 0px 0px 0px; }
rlm@0 83 th.thLeft,td.catLeft { border-width: 0px 0px 0px 0px; }
rlm@0 84 th.thBottom,td.catBottom { border-width: 0px 0px 0px 0px; }
rlm@0 85 th.thTop { border-width: 0px 0px 0px 0px; }
rlm@0 86 th.thCornerL { border-width: 0px 0px 0px 0px; }
rlm@0 87 th.thCornerR { border-width: 0px 0px 0px 0px; }
rlm@0 88
rlm@0 89
rlm@0 90 /* The largest text used in the index page title and toptic title etc. */
rlm@0 91 .maintitle,h1,h2 {
rlm@0 92 font-weight: none; font-size: 18px; font-family: "Verdana",Verdana, Arial, Helvetica, sans-serif;
rlm@0 93 text-decoration: none; line-height : 120%; color : #5D7790;
rlm@0 94 }
rlm@0 95
rlm@0 96
rlm@0 97 /* General text */
rlm@0 98 .gen { font-size : 12px; }
rlm@0 99 .genmed { font-size : 11px; }
rlm@0 100 .gensmall { font-size : 10px; }
rlm@0 101 .gen,.genmed,.gensmall { color : #FFFFFF; }
rlm@0 102 a.gen,a.genmed,a.gensmall { color: #2AAAA8; text-decoration: none; }
rlm@0 103 a.gen:visited,a.genmed:visited,a.gensmall:visited { color: #2AAAA8; text-decoration: none; }
rlm@0 104 a.gen:hover,a.genmed:hover,a.gensmall:hover { color: #2AAAA8; text-decoration: underline; }
rlm@0 105
rlm@0 106
rlm@0 107 /* The register, login, search etc links at the top of the page */
rlm@0 108 .mainmenu { font-size : 11px; color : #000000 }
rlm@0 109 a.mainmenu { text-decoration: none; color : #2AAAA8; }
rlm@0 110 a.mainmenu:hover{ text-decoration: underline; color : #DD6900; }
rlm@0 111
rlm@0 112
rlm@0 113 /* Forum category titles */
rlm@0 114 .cattitle { font-weight: bold; font-size: 12px ; letter-spacing: 1px; color : #FFFFFF}
rlm@0 115 a.cattitle { text-decoration: none; color : #FFFFFF; }
rlm@0 116 a.cattitle:visited { text-decoration: none; color : #FFFFFF; }
rlm@0 117 a.cattitle:hover { text-decoration: underline; color : #FFFFFF; }
rlm@0 118
rlm@0 119 /* Forum title: Text and link to the forums used in: index.php */
rlm@0 120 .forumlink { font-weight: bold; font-size: 12px; color : #2AAAA8; }
rlm@0 121 a.forumlink { text-decoration: none; color : #2AAAA8; }
rlm@0 122 a.forumlink:visited { text-decoration: none; color : #2AAAA8; }
rlm@0 123 a.forumlink:hover{ text-decoration: underline; color : #2AAAA8; }
rlm@0 124
rlm@0 125
rlm@0 126 /* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */
rlm@0 127 .nav { font-weight: bold; font-size: 11px; color : #2AAAA8;}
rlm@0 128 a.nav { text-decoration: none; color : #2AAAA8; }
rlm@0 129 a.nav:hover { text-decoration: underline; color : #2AAAA8;}
rlm@0 130
rlm@0 131
rlm@0 132 /* titles for the topics: could specify viewed link colour too */
rlm@0 133 .topictitle { font-weight: bold; font-size: 11px; color : #FFFF00; }
rlm@0 134 a.topictitle:link { text-decoration: none; color : #2AAAA8; }
rlm@0 135 a.topictitle:visited { text-decoration: none; color : #2AAAA8; }
rlm@0 136 a.topictitle:hover { text-decoration: underline; color : #2AAAA8; }
rlm@0 137
rlm@0 138
rlm@0 139 /* Name of poster in viewmsg.php and viewtopic.php and other places */
rlm@0 140 .name { font-size : 11px; color : #FFFFFF;}
rlm@0 141
rlm@0 142 /* Location, number of posts, post date etc */
rlm@0 143 .postdetails { font-size : 10px; color : #FFFFFF; }
rlm@0 144
rlm@0 145
rlm@0 146 /* The content of the posts (body of text) */
rlm@0 147 .postbody { font-size : 12px; color : #FFFFFF}
rlm@0 148 a.postlink:link { text-decoration: none; color : #2AAAA8 }
rlm@0 149 a.postlink:visited { text-decoration: none; color : #2AAAA8; }
rlm@0 150 a.postlink:hover { text-decoration: underline; color : #2AAAA8}
rlm@0 151
rlm@0 152 .error { font-size : 16px; color : #42E5E2; background-color: #2AAAA8; border: #D1D7DC; border-style: solid;
rlm@0 153 border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
rlm@0 154 }
rlm@0 155
rlm@0 156 /* Quote & Code blocks */
rlm@0 157 .code {
rlm@0 158 font-family: Courier, 'Courier New', sans-serif; font-size: 11px; color: #006600;
rlm@0 159 background-color: #FAFAFA; border: #D1D7DC; border-style: solid;
rlm@0 160 border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
rlm@0 161 }
rlm@0 162
rlm@0 163 .quote {
rlm@0 164 font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #42E5E2; line-height: 125%;
rlm@0 165 background-color: #2AAAA8; border: #D1D7DC; border-style: solid;
rlm@0 166 border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
rlm@0 167 }
rlm@0 168
rlm@0 169
rlm@0 170 /* Copyright and bottom info */
rlm@0 171 .copyright { font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; color: #FFFFFF; letter-spacing: -1px;}
rlm@0 172 a.copyright { color: #2AAAA8; text-decoration: none;}
rlm@0 173
rlm@0 174 a.copyright:hover { color: #2AAAA8; text-decoration: underline;}
rlm@0 175
rlm@0 176
rlm@0 177 /* Form elements */
rlm@0 178 input,textarea, select {
rlm@0 179 color : #000000;
rlm@0 180 font: normal 11px Verdana, Arial, Helvetica, sans-serif;
rlm@0 181 border-color : #000000;
rlm@0 182 }
rlm@0 183
rlm@0 184 /* The text input fields background colour */
rlm@0 185 input.post, textarea.post, select {
rlm@0 186 background-color : #FFFFFF;
rlm@0 187 }
rlm@0 188
rlm@0 189 input { text-indent : 2px; }
rlm@0 190
rlm@0 191 /* The buttons used for bbCode styling in message post */
rlm@0 192 input.button {
rlm@0 193 background-color : #EFEFEF;
rlm@0 194 color : #000000;
rlm@0 195 font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif;
rlm@0 196 }
rlm@0 197
rlm@0 198 /* The main submit button option */
rlm@0 199 input.mainoption {
rlm@0 200 background-color : #FAFAFA;
rlm@0 201 font-weight : bold;
rlm@0 202 }
rlm@0 203
rlm@0 204 /* None-bold submit button */
rlm@0 205 input.liteoption {
rlm@0 206 background-color : #FAFAFA;
rlm@0 207 font-weight : normal;
rlm@0 208 }
rlm@0 209
rlm@0 210 /* This is the line in the posting page which shows the rollover
rlm@0 211 help line. This is actually a text box, but if set to be the same
rlm@0 212 colour as the background no one will know ;)
rlm@0 213 */
rlm@0 214 .helpline { background-color: #DEE3E7; border-style: none; }
rlm@0 215
rlm@0 216
rlm@0 217 /* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
rlm@0 218 @import url("formIE.css");