(file) Return to page_header.tpl CVS log (file) (dir) Up to [RizwankCVS] / geekymedia_web / phpBB2 / templates / subSilver / admin

  1 rizwank 1.1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2             <html>
  3             <head>
  4             {META}
  5             <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}"  />
  6             <!-- link rel="stylesheet" href="../templates/subSilver/{T_HEAD_STYLESHEET}" type="text/css" -->
  7             <style type="text/css">
  8             <!--
  9             
 10             /*
 11               The original subSilver Theme for phpBB version 2+
 12               Created by subBlue design
 13               http://www.subBlue.com
 14             
 15               NOTE: These CSS definitions are stored within the main page body so that you can use the phpBB2
 16               theme administration centre. When you have finalised your style you could cut the final CSS code
 17               and place it in an external file, deleting this section to save bandwidth.
 18             */
 19              
 20              
 21              /* General page style. The scroll bar colours only visible in IE5.5+ */
 22 rizwank 1.1 body { 
 23             	background-color: {T_BODY_BGCOLOR};
 24             	scrollbar-face-color: {T_TR_COLOR2};
 25             	scrollbar-highlight-color: {T_TD_COLOR2};
 26             	scrollbar-shadow-color: {T_TR_COLOR2};
 27             	scrollbar-3dlight-color: {T_TR_COLOR3};
 28             	scrollbar-arrow-color:  {T_BODY_LINK};
 29             	scrollbar-track-color: {T_TR_COLOR1};
 30             	scrollbar-darkshadow-color: {T_TH_COLOR1};
 31             }
 32             
 33             /* General font families for common tags */
 34             font,th,td,p { font-family: {T_FONTFACE1} }
 35             p, td		{ font-size : {T_FONTSIZE2}; color : {T_BODY_TEXT}; }
 36             a:link,a:active,a:visited { color : {T_BODY_LINK}; }
 37             a:hover		{ text-decoration: underline; color : {T_BODY_HLINK}; }
 38             hr	{ height: 0px; border: solid {T_TR_COLOR3} 0px; border-top-width: 1px;}
 39             h1,h2		{ font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; font-size : 22px; font-weight : bold; text-decoration : none; line-height : 120%; color : #000000;}
 40             
 41             
 42             /* This is the border line & background colour round the entire page */
 43 rizwank 1.1 .bodyline	{ background-color: {T_TD_COLOR2}; border: 1px {T_TH_COLOR1} solid; }
 44             
 45             /* This is the outline round the main forum tables */
 46             .forumline	{ background-color: {T_TD_COLOR2}; border: 2px {T_TH_COLOR2} solid; }
 47             
 48             
 49             /* Main table cell colours and backgrounds */
 50             td.row1	{ background-color: {T_TR_COLOR1}; }
 51             td.row2	{ background-color: {T_TR_COLOR2}; }
 52             td.row3	{ background-color: {T_TR_COLOR3}; }
 53             
 54             
 55             /*
 56               This is for the table cell above the Topics, Post & Last posts on the index.php page
 57               By default this is the fading out gradiated silver background.
 58               However, you could replace this with a bitmap specific for each forum
 59             */
 60             td.rowpic {
 61             		background-color: {T_TD_COLOR2};
 62             		background-image: url(../templates/subSilver/images/{T_TH_CLASS3});
 63             		background-repeat: repeat-y;
 64 rizwank 1.1 }
 65             
 66             /* Header cells - the blue and silver gradient backgrounds */
 67             th	{
 68             	color: {T_FONTCOLOR3}; font-size: {T_FONTSIZE2}px; font-weight : bold; 
 69             	background-color: {T_BODY_LINK}; height: 25px;
 70             	background-image: url(../templates/subSilver/images/{T_TH_CLASS2});
 71             }
 72             
 73             td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom {
 74             			background-image: url(../templates/subSilver/images/{T_TH_CLASS1});
 75             			background-color:{T_TR_COLOR3}; border: {T_TH_COLOR3}; border-style: solid; height: 28px;
 76             }
 77             
 78             
 79             /*
 80               Setting additional nice inner borders for the main table cells.
 81               The names indicate which sides the border will be on.
 82               Don't worry if you don't understand this, just ignore it :-)
 83             */
 84             td.cat,td.catHead,td.catBottom {
 85 rizwank 1.1 	height: 29px;
 86             	border-width: 0px 0px 0px 0px;
 87             }
 88             th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
 89             	font-weight: bold; border: {T_TD_COLOR2}; border-style: solid; height: 28px; }
 90             td.row3Right,td.spaceRow {
 91             	background-color: {T_TR_COLOR3}; border: {T_TH_COLOR3}; border-style: solid; }
 92             
 93             th.thHead,td.catHead { font-size: {T_FONTSIZE3}px; border-width: 1px 1px 0px 1px; }
 94             th.thSides,td.catSides,td.spaceRow	 { border-width: 0px 1px 0px 1px; }
 95             th.thRight,td.catRight,td.row3Right	 { border-width: 0px 1px 0px 0px; }
 96             th.thLeft,td.catLeft	  { border-width: 0px 0px 0px 1px; }
 97             th.thBottom,td.catBottom  { border-width: 0px 1px 1px 1px; }
 98             th.thTop	 { border-width: 1px 0px 0px 0px; }
 99             th.thCornerL { border-width: 1px 0px 0px 1px; }
100             th.thCornerR { border-width: 1px 1px 0px 0px; }
101             
102             
103             /* The largest text used in the index page title and toptic title etc. */
104             .maintitle	{
105             			font-weight: bold; font-size: 22px; font-family: "{T_FONTFACE2}",{T_FONTFACE1};
106 rizwank 1.1 			text-decoration: none; line-height : 120%; color : {T_BODY_TEXT};
107             }
108             
109             
110             /* General text */
111             .gen { font-size : {T_FONTSIZE3}px; }
112             .genmed { font-size : {T_FONTSIZE2}px; }
113             .gensmall { font-size : {T_FONTSIZE1}px; }
114             .gen,.genmed,.gensmall { color : {T_BODY_TEXT}; }
115             a.gen,a.genmed,a.gensmall { color: {T_BODY_LINK}; text-decoration: none; }
116             a.gen:hover,a.genmed:hover,a.gensmall:hover	{ color: {T_BODY_HLINK}; text-decoration: underline; }
117             
118             
119             /* The register, login, search etc links at the top of the page */
120             .mainmenu		{ font-size : {T_FONTSIZE2}px; color : {T_BODY_TEXT} }
121             a.mainmenu		{ text-decoration: none; color : {T_BODY_LINK};  }
122             a.mainmenu:hover{ text-decoration: underline; color : {T_BODY_HLINK}; }
123             
124             
125             /* Forum category titles */
126             .cattitle		{ font-weight: bold; font-size: {T_FONTSIZE3}px ; letter-spacing: 1px; color : {T_BODY_LINK}}
127 rizwank 1.1 a.cattitle		{ text-decoration: none; color : {T_BODY_LINK}; }
128             a.cattitle:hover{ text-decoration: underline; }
129             
130             
131             /* Forum title: Text and link to the forums used in: index.php */
132             .forumlink		{ font-weight: bold; font-size: {T_FONTSIZE3}px; color : {T_BODY_LINK}; }
133             a.forumlink 	{ text-decoration: none; color : {T_BODY_LINK}; }
134             a.forumlink:hover{ text-decoration: underline; color : {T_BODY_HLINK}; }
135             
136             
137             /* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */
138             .nav			{ font-weight: bold; font-size: {T_FONTSIZE2}px; color : {T_BODY_TEXT};}
139             a.nav			{ text-decoration: none; color : {T_BODY_LINK}; }
140             a.nav:hover		{ text-decoration: underline; }
141             
142             
143             
144             /* Name of poster in viewmsg.php and viewtopic.php and other places */
145             .name			{ font-size : {T_FONTSIZE2}px; color : {T_BODY_TEXT};}
146             
147             /* Location, number of posts, post date etc */
148 rizwank 1.1 .postdetails		{ font-size : {T_FONTSIZE1}px; color : {T_BODY_TEXT}; }
149             
150             
151             /* The content of the posts (body of text) */
152             .postbody { font-size : {T_FONTSIZE3}px; line-height: 18px}
153             a.postlink:link	{ text-decoration: none; color : {T_BODY_LINK} }
154             a.postlink:visited { text-decoration: none; color : {T_BODY_VLINK}; }
155             a.postlink:hover { text-decoration: underline; color : {T_BODY_HLINK}}
156             
157             
158             /* Quote & Code blocks */
159             .code { 
160             	font-family: {T_FONTFACE3}; font-size: {T_FONTSIZE2}px; color: {T_FONTCOLOR2};
161             	background-color: {T_TD_COLOR1}; border: {T_TR_COLOR3}; border-style: solid;
162             	border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
163             }
164             
165             .quote {
166             	font-family: {T_FONTFACE1}; font-size: {T_FONTSIZE2}px; color: {T_FONTCOLOR1}; line-height: 125%;
167             	background-color: {T_TD_COLOR1}; border: {T_TR_COLOR3}; border-style: solid;
168             	border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
169 rizwank 1.1 }
170             
171             
172             /* Copyright and bottom info */
173             .copyright		{ font-size: {T_FONTSIZE1}px; font-family: {T_FONTFACE1}; color: {T_FONTCOLOR1}; letter-spacing: -1px;}
174             a.copyright		{ color: {T_FONTCOLOR1}; text-decoration: none;}
175             a.copyright:hover { color: {T_BODY_TEXT}; text-decoration: underline;}
176             
177             
178             /* Form elements */
179             input,textarea, select {
180             	color : {T_BODY_TEXT};
181             	font: normal {T_FONTSIZE2}px {T_FONTFACE1};
182             	border-color : {T_BODY_TEXT};
183             }
184             
185             /* The text input fields background colour */
186             input.post, textarea.post, select {
187             	background-color : {T_TD_COLOR2};
188             }
189             
190 rizwank 1.1 input { text-indent : 2px; }
191             
192             /* The buttons used for bbCode styling in message post */
193             input.button {
194             	background-color : {T_TR_COLOR1};
195             	color : {T_BODY_TEXT};
196             	font-size: {T_FONTSIZE2}px; font-family: {T_FONTFACE1};
197             }
198             
199             /* The main submit button option */
200             input.mainoption {
201             	background-color : {T_TD_COLOR1};
202             	font-weight : bold;
203             }
204             
205             /* None-bold submit button */
206             input.liteoption {
207             	background-color : {T_TD_COLOR1};
208             	font-weight : normal;
209             }
210             
211 rizwank 1.1 /* This is the line in the posting page which shows the rollover
212               help line. This is actually a text box, but if set to be the same
213               colour as the background no one will know ;)
214             */
215             .helpline { background-color: {T_TR_COLOR2}; border-style: none; }
216             
217             
218             /* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
219             @import url("../templates/subSilver/formIE.css"); 
220             -->
221             </style>
222             <title>{SITENAME} - {L_PHPBB_ADMIN}</title>
223             </head>
224             <body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
225             
226             <a name="top"></a>

Rizwan Kassim
Powered by
ViewCVS 0.9.2