index.css 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537
  1. /* Styles for the general looks for the Core theme.
  2. ------------------------------------------------------- */
  3. /* Normal, standard links. */
  4. a:link, a:visited
  5. {
  6. color: #476c8e;
  7. text-decoration: none;
  8. }
  9. a:hover
  10. {
  11. text-decoration: underline;
  12. }
  13. /* Tables should show empty cells. */
  14. table
  15. {
  16. empty-cells: show;
  17. }
  18. /* Set a fontsize that will look the same in all browsers. */
  19. body
  20. {
  21. background: #e5e5e8;
  22. font: 95%/90% Verdana, Helvetica, sans-serif;
  23. margin: 0;
  24. padding: 12px 0 4px 0;
  25. }
  26. /* Help popups require a different styling of the body element. */
  27. body#help_popup
  28. {
  29. width: auto;
  30. padding: 1em;
  31. min-width: 0;
  32. }
  33. /* use dark grey for the text, leaving #000 for headers etc */
  34. body, td, th, tr
  35. {
  36. color: #444;
  37. }
  38. /* lets give all forms zero padding/margins */
  39. form
  40. {
  41. padding: 0;
  42. margin: 0;
  43. }
  44. /* We can style the different types of input buttons to be uniform throughout different browsers and their color themes.
  45. .button_submit - covers input[type=submit], input[type=button], button[type=submit] and button[type=button] in all browsers
  46. .button_reset - covers input[type=reset] and button[type=reset] throughout all browsers
  47. .input_check - covers input[type=checkbox] throughout all browsers
  48. .input_radio - covers input[type=radio] throughout all browsers
  49. .input_text - covers input[type=text] throughout all browsers
  50. .input_file - covers input[type=file] throughout all browsers
  51. */
  52. input, button, select, textarea
  53. {
  54. font: 90%/105% verdana, Helvetica, sans-serif;
  55. color: #000;
  56. }
  57. /* the new "button" */
  58. a.new_posts:hover
  59. {
  60. text-decoration: none;
  61. }
  62. span.new_posts
  63. {
  64. padding: 0 4px 1px 4px;
  65. background-color: #ff8300;
  66. color: #fff;
  67. font-size: .7em;
  68. font-weight: bold;
  69. }
  70. /* The font size of textareas should be just a little bit larger. */
  71. textarea
  72. {
  73. font: 100%/130% verdana, Helvetica, sans-serif;
  74. }
  75. /* All input elements that are checkboxes or radio buttons shouldn't have a border around them. */
  76. input.input_check, input.input_radio
  77. {
  78. border: none;
  79. background: none;
  80. }
  81. /* Standard horizontal rule.. ([hr], etc.) */
  82. hr, .hrcolor
  83. {
  84. height: 1px;
  85. border: 0;
  86. color: #666;
  87. background-color: #666;
  88. }
  89. /* By default set the color on these tags as #000. */
  90. h1, h2, h3, h4, h5, h6
  91. {
  92. color: #000;
  93. font-size: 1em;
  94. margin: 0;
  95. padding: 0;
  96. }
  97. .content fieldset
  98. {
  99. border: 2px groove #fff;
  100. padding: 1em;
  101. margin: 0 0 0.3em 0;
  102. }
  103. /* No image should have a border when linked. */
  104. a img
  105. {
  106. border: 0;
  107. }
  108. /* Define strong as bold, and em as italics */
  109. strong
  110. {
  111. font-weight: bold;
  112. }
  113. em
  114. {
  115. font-style: italic;
  116. }
  117. /* Alternative for u tag */
  118. .underline
  119. {
  120. text-decoration: underline;
  121. }
  122. /* Common classes for easy styling.
  123. ------------------------------------------------------- */
  124. .floatright
  125. {
  126. float: right;
  127. }
  128. .floatleft
  129. {
  130. float: left;
  131. }
  132. .flow_auto
  133. {
  134. overflow: auto;
  135. }
  136. .flow_hidden
  137. {
  138. overflow: hidden;
  139. }
  140. .clear
  141. {
  142. clear: both;
  143. }
  144. .clear_left
  145. {
  146. clear: left;
  147. }
  148. .clear_right
  149. {
  150. clear: right;
  151. }
  152. /* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
  153. .smalltext, tr.smalltext th
  154. {
  155. font-size: 0.85em;
  156. font-family: verdana, sans-serif;
  157. }
  158. .middletext
  159. {
  160. font-size: 0.9em;
  161. font-family: verdana, sans-serif;
  162. }
  163. .normaltext
  164. {
  165. font-size: 1em;
  166. line-height: 1.2em;
  167. }
  168. .largetext
  169. {
  170. font-size: 1.4em;
  171. }
  172. .centertext
  173. {
  174. margin: 0 auto;
  175. text-align: center;
  176. }
  177. .righttext
  178. {
  179. margin-left: auto;
  180. margin-right: 0;
  181. text-align: right;
  182. }
  183. .lefttext
  184. {
  185. margin-left: 0;
  186. margin-right: auto;
  187. text-align: left;
  188. }
  189. /* some common padding styles */
  190. .padding
  191. {
  192. padding: 0.7em;
  193. }
  194. .main_section, .lower_padding
  195. {
  196. padding-bottom: 0.5em;
  197. }
  198. /* a quick reset list class. */
  199. ul.reset, ul.reset li
  200. {
  201. padding: 0;
  202. margin: 0;
  203. list-style: none;
  204. }
  205. /* Some BBC related styles.
  206. ------------------------------------------------------- */
  207. /* A quote, perhaps from another post. */
  208. blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote
  209. {
  210. color: #000;
  211. border: 1px solid #000;
  212. margin: 1px;
  213. padding: 1px;
  214. font-size: x-small;
  215. line-height: 1.4em;
  216. overflow: auto;
  217. }
  218. /* Alterate block quote stylings */
  219. blockquote.bbc_standard_quote
  220. {
  221. background-color: #d7daec;
  222. }
  223. blockquote.bbc_alternate_quote
  224. {
  225. background-color: #e7eafc;
  226. }
  227. /* A code block - maybe even PHP ;). */
  228. code.bbc_code
  229. {
  230. display: block;
  231. font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
  232. font-size: x-small;
  233. background: #eef;
  234. border: 1px solid #000;
  235. line-height: 1.3em;
  236. padding: 1px;
  237. overflow: auto;
  238. white-space: nowrap;
  239. /* Show a scrollbar after about 24 lines. */
  240. max-height: 24em;
  241. }
  242. /* The "Quote:" and "Code:" header parts... */
  243. .codeheader, .quoteheader
  244. {
  245. color: #000;
  246. text-decoration: none;
  247. font-style: normal;
  248. font-weight: bold;
  249. font-size: x-small;
  250. line-height: 1.2em;
  251. padding: 0 0.3em;
  252. }
  253. /* For links to change the code stuff... */
  254. .codeoperation
  255. {
  256. font-weight: normal;
  257. }
  258. /* Styling for BBC tags */
  259. .bbc_size
  260. {
  261. line-height: 1.4em;
  262. }
  263. .bbc_color a
  264. {
  265. color: inherit;
  266. }
  267. .bbc_img
  268. {
  269. border: 0;
  270. }
  271. .bbc_table
  272. {
  273. font: inherit;
  274. color: inherit;
  275. }
  276. .bbc_table td
  277. {
  278. font: inherit;
  279. color: inherit;
  280. vertical-align: top;
  281. }
  282. .bbc_u
  283. {
  284. text-decoration: underline;
  285. }
  286. .bbc_tt
  287. {
  288. font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
  289. }
  290. /* Generally, those [?] icons. This makes your cursor a help icon. */
  291. .help
  292. {
  293. cursor: help;
  294. }
  295. /* /me uses this a lot. (emote, try typing /me in a post.) */
  296. .meaction
  297. {
  298. color: red;
  299. }
  300. /* Highlighted text - such as search results. */
  301. .highlight
  302. {
  303. background-color: #ff0;
  304. font-weight: bold;
  305. color: #000;
  306. }
  307. /* A more discreet highlight color, for selected membergroups etc. */
  308. .highlight2
  309. {
  310. background-color: #D1E1EF;
  311. color: #000;
  312. }
  313. /* Generic, mostly color-related, classes.
  314. ------------------------------------------------------- */
  315. .titlebg, .titlebg2, tr.titlebg td, tr.titlebg2 td
  316. {
  317. color: #000;
  318. font-family: Verdana, Helvetica, sans-serif;
  319. font-weight: bold;
  320. background: url(../images/titlebg.jpg) #E9F0F6 repeat-x;
  321. }
  322. .catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
  323. {
  324. color: #fff;
  325. font-family: Verdana, Helvetica, sans-serif;
  326. font-weight: bold;
  327. background: url(../images/catbg.jpg) #88A6C0 repeat-x;
  328. }
  329. .catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
  330. {
  331. background: url(../images/catbg2.jpg) #A1BFD9 repeat-x;
  332. }
  333. /* adjust the table versions of headers */
  334. tr.titlebg td, tr.titlebg2 td
  335. {
  336. padding: 6px;
  337. }
  338. tr.catbg td, tr.catbg2 td, td.catbg, td.catbg2, tr.catbg th, tr.catbg2 th, th.catbg, th.catbg2
  339. {
  340. padding: 6px;
  341. }
  342. tr.titlebg td a, tr.titlebg2 td a
  343. {
  344. color: #000;
  345. }
  346. tr.catbg td a, tr.catbg2 td a, .catbg a
  347. {
  348. color: #fff;
  349. }
  350. tr.catbg th.smalltext
  351. {
  352. font-size: 0.9em;
  353. }
  354. /* Alternating backgrounds for posts, and several other sections of the forum. */
  355. .windowbg, #preview_body, .content, .roundframe
  356. {
  357. color: #000;
  358. background-color: #ecedf3;
  359. }
  360. .windowbg2
  361. {
  362. color: #000;
  363. background-color: #f6f6f6;
  364. }
  365. .windowbg3
  366. {
  367. color: #000;
  368. background-color: #e0e1e8;
  369. }
  370. /* the page navigation area */
  371. .pagesection
  372. {
  373. font-size: 0.85em;
  374. padding: 0.5em 0.2em;
  375. overflow: hidden;
  376. }
  377. .pagesection .pagelinks
  378. {
  379. padding: 0.5em 0;
  380. }
  381. /* GenericList */
  382. table.table_grid thead tr.catbg th.smalltext
  383. {
  384. white-space: nowrap;
  385. }
  386. /* Color for background of posts requiring approval */
  387. .approvebg
  388. {
  389. color: #000;
  390. background-color: #f6e0d4;
  391. }
  392. /* Color for background of *topics* requiring approval */
  393. .approvetbg
  394. {
  395. color: #000;
  396. background-color: #e4a17c;
  397. }
  398. /* sticky posts have a different background */
  399. .stickybg
  400. {
  401. background: #e8d8cf;
  402. }
  403. .stickybg2
  404. {
  405. background: #f2e3d9;
  406. }
  407. /* locked posts too! */
  408. .lockedbg
  409. {
  410. background: #d4dce2;
  411. font-style: italic;
  412. }
  413. .lockedbg2
  414. {
  415. background: #d8e1e7;
  416. font-style: italic;
  417. }
  418. /* Posts and personal messages displayed throughout the forum. */
  419. .post, .personalmessage
  420. {
  421. width: 100%;
  422. overflow: auto;
  423. line-height: 1.4em;
  424. }
  425. /* All the signatures used in the forum. If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
  426. .signature
  427. {
  428. clear: right;
  429. padding: 1em 0 3px 0;
  430. width: 98%;
  431. border-top: 1px solid #666;
  432. line-height: 1.4em;
  433. font-size: 0.85em;
  434. }
  435. .custom_fields_above_signature
  436. {
  437. clear: right;
  438. padding: 1em 0 3px 0;
  439. width: 98%;
  440. border-top: 1px solid #666;
  441. line-height: 1.4em;
  442. font-size: 0.85em;
  443. }
  444. /* Sometimes there will be an error when you post */
  445. .error
  446. {
  447. color: red;
  448. }
  449. /* Messages that somehow need to attract the attention. */
  450. .alert
  451. {
  452. color: red;
  453. }
  454. /* Calendar colors for birthdays, events and holidays */
  455. .birthday
  456. {
  457. color: #920ac4;
  458. }
  459. .event
  460. {
  461. color: #078907;
  462. }
  463. .holiday
  464. {
  465. color: #000080;
  466. }
  467. /* Colors for warnings */
  468. .warn_mute
  469. {
  470. color: red;
  471. }
  472. .warn_moderate
  473. {
  474. color: #ffa500;
  475. }
  476. .warn_watch, .success
  477. {
  478. color: green;
  479. }
  480. a.moderation_link, a.moderation_link:visited
  481. {
  482. color: red;
  483. font-weight: bold;
  484. }
  485. .openid_login
  486. {
  487. background: white url(../images/openid.gif) no-repeat;
  488. padding-left: 18px;
  489. }
  490. /* a descriptive style */
  491. .description
  492. {
  493. padding: 1em;
  494. font-size: 0.9em;
  495. line-height: 1.5em;
  496. border: 1px solid #bbb;
  497. background: #f5f5f0;
  498. margin: 0 0 1em 0;
  499. }
  500. /* an informative style */
  501. .information
  502. {
  503. padding: 1em;
  504. font-size: 0.9em;
  505. line-height: 1.5em;
  506. border: 1px solid #bbb;
  507. background: #f0f6f0;
  508. margin: 0 0 1em 0;
  509. }
  510. .information p
  511. {
  512. padding: 1em;
  513. margin: 0;
  514. }
  515. /* AJAX notification bar
  516. ------------------------------------------------------- */
  517. #ajax_in_progress
  518. {
  519. background: #32cd32;
  520. color: #fff;
  521. text-align: center;
  522. font-weight: bold;
  523. font-size: 18pt;
  524. padding: 0.4em;
  525. width: 100%;
  526. position: fixed;
  527. top: 0;
  528. left: 0;
  529. }
  530. #ajax_in_progress a
  531. {
  532. color: #fff;
  533. text-decoration: underline;
  534. font-size: smaller;
  535. float: right;
  536. }
  537. /* a general table class */
  538. table.table_grid
  539. {
  540. border-collapse: collapse;
  541. border: 1px solid #adadad;
  542. }
  543. table.table_grid td
  544. {
  545. padding: 3px;
  546. border: 1px solid #adadad;
  547. }
  548. /* Lists with settings use these a lot.
  549. ------------------------------------------------------- */
  550. dl.settings
  551. {
  552. clear: right;
  553. overflow: auto;
  554. margin: 0 0 10px 0;
  555. padding: 0;
  556. }
  557. dl.settings dt
  558. {
  559. width: 48%;
  560. float: left;
  561. margin: 0 0 10px 0;
  562. padding: 0;
  563. clear: both;
  564. }
  565. dl.settings dt.settings_title
  566. {
  567. width: 100%;
  568. float: none;
  569. margin: 0 0 10px 0;
  570. padding: 5px 0 0 0;
  571. font-weight: bold;
  572. clear: both;
  573. }
  574. dl.settings dt.windowbg
  575. {
  576. width: 98%;
  577. float: left;
  578. margin: 0 0 3px 0;
  579. padding: 0 0 5px 0;
  580. clear: both;
  581. }
  582. dl.settings dd
  583. {
  584. width: 48%;
  585. float: left;
  586. overflow: auto;
  587. margin: 0 0 3px 0;
  588. padding: 0;
  589. }
  590. dl.settings img
  591. {
  592. margin: 0 10px 0 0;
  593. }
  594. /* The main content area.
  595. ------------------------------------------------------- */
  596. .content, .roundframe
  597. {
  598. padding: 0.5em 1.2em;
  599. margin: 0;
  600. border: none;
  601. border: 1px solid #adadad;
  602. }
  603. .content p, .roundframe p
  604. {
  605. margin: 0 0 0.5em 0;
  606. }
  607. /* Styles used by the auto suggest control.
  608. ------------------------------------------------------- */
  609. .auto_suggest_div
  610. {
  611. border: 1px solid #000;
  612. position: absolute;
  613. visibility: hidden;
  614. }
  615. .auto_suggest_item
  616. {
  617. background-color: #ddd;
  618. }
  619. .auto_suggest_item_hover
  620. {
  621. background-color: #888;
  622. cursor: pointer;
  623. color: #eee;
  624. }
  625. /* Styles for the standard dropdown menus.
  626. ------------------------------------------------------- */
  627. /* Container for the new admin menu */
  628. #adm_container
  629. {
  630. float: left;
  631. margin-left: 10px;
  632. padding: 0 5px 0 5px;
  633. background: url(../images/admintab_left.gif) no-repeat;
  634. }
  635. ul.admin_menu, ul.admin_menu li ul
  636. {
  637. margin: 0;
  638. padding: 0;
  639. list-style: none;
  640. }
  641. ul.admin_menu
  642. {
  643. background: url(../images/admintab_right.gif) top right no-repeat;
  644. }
  645. ul.admin_menu a
  646. {
  647. text-decoration: none;
  648. }
  649. /* First layer of menu items */
  650. ul.admin_menu li
  651. {
  652. position: relative;
  653. float: left;
  654. background: url(../images/admintab_back.gif) top right repeat-x;
  655. padding-right: 4px;
  656. }
  657. ul.admin_menu li.last
  658. {
  659. background: url(../images/admintab_right.gif) top right repeat-x;
  660. }
  661. ul.admin_menu li.chosen
  662. {
  663. background: url(../images/admintab_active_left.gif) no-repeat;
  664. padding: 0 0 0 6px;
  665. }
  666. ul.admin_menu li h4
  667. {
  668. margin: 0;
  669. padding: 7px 5px 3px 5px;
  670. cursor: pointer;
  671. font-weight: normal;
  672. font-size: x-small;
  673. text-transform: uppercase;
  674. color: #fff;
  675. }
  676. ul.admin_menu li.last.chosen h4
  677. {
  678. background: url(../images/admintab_active_last.gif) top right no-repeat;
  679. padding-right: 17px;
  680. }
  681. /* IE6 does't support multiple class selectors */
  682. ul.admin_menu li.last_chosen h4
  683. {
  684. background: url(../images/admintab_active_last.gif) top right no-repeat;
  685. padding-right: 17px;
  686. }
  687. ul.admin_menu li.chosen h4
  688. {
  689. background: url(../images/admintab_active_right.gif) top right no-repeat;
  690. padding-right: 10px;
  691. }
  692. /* Second layer of menu items */
  693. ul.admin_menu li ul
  694. {
  695. z-index: 90;
  696. display: none;
  697. position: absolute;
  698. /* IE6 needs a fixed width to prevent the menu from going haywire */
  699. width: 19em;
  700. border: 1px solid #808080;
  701. border-left: 2px solid #6888a7;
  702. background: #f8f8fb;
  703. }
  704. ul.admin_menu li.chosen ul
  705. {
  706. margin: 0 0 0 -6px;
  707. }
  708. ul.admin_menu li ul li
  709. {
  710. background: none;
  711. width: 19em;
  712. padding: 0;
  713. }
  714. ul.admin_menu li ul li a
  715. {
  716. display: block;
  717. padding: 0.5em 2em 0.5em 0.5em;
  718. font-size: 90%;
  719. text-decoration: none;
  720. background: none;
  721. color: #000 !important;
  722. }
  723. ul.admin_menu li ul li a.subsection
  724. {
  725. background: url(../images/admin/subsection.gif) no-repeat 98% 50%;
  726. }
  727. ul.admin_menu li ul li a.chosen
  728. {
  729. font-weight: bold;
  730. }
  731. ul.admin_menu li ul li a:hover
  732. {
  733. background-color: #c8e2fb;
  734. text-decoration: none;
  735. }
  736. ul.admin_menu li:hover ul, ul.admin_menu li.over ul
  737. {
  738. display: block;
  739. }
  740. /* Third layer of menu items */
  741. ul.admin_menu li ul li ul, ul.admin_menu li ul li.over ul
  742. {
  743. display: none;
  744. position: absolute;
  745. top: -999em;
  746. border: 1px solid #a0a0a0;
  747. border-left: 2px solid #6888a7;
  748. background: #fff;
  749. }
  750. ul.admin_menu li ul li:hover ul, ul.admin_menu li ul li.over ul
  751. {
  752. display: block;
  753. left: 18em;
  754. top: auto;
  755. margin: -2em 0 0 1em;
  756. }
  757. #adm_submenus
  758. {
  759. padding: 0 0 0 2em;
  760. }
  761. #adm_submenus, #adm_submenus ul
  762. {
  763. height: 3em;
  764. overflow: auto;
  765. }
  766. /* The dropdown menu toggle image */
  767. div#menu_toggle
  768. {
  769. float: right;
  770. margin: 0 10px 0 0;
  771. background: url(../images/mirrortab_first.gif) top left no-repeat;
  772. padding: 0 0 0 7px;
  773. }
  774. div#menu_toggle a
  775. {
  776. display: block;
  777. background: #e5e5e8 url(../images/mirrortab_last.gif) top right no-repeat;
  778. padding: 8px 12px 3px 6px;
  779. }
  780. /* Styles for the standard button lists.
  781. ------------------------------------------------------- */
  782. .buttonlist ul
  783. {
  784. background: url(../images/maintab_first.gif) no-repeat scroll left bottom;
  785. padding: 0 0 0 10px;
  786. }
  787. .buttonlist ul li, .buttonlist_bottom ul li
  788. {
  789. display: inline;
  790. }
  791. .buttonlist ul li a, .buttonlist_bottom ul li a
  792. {
  793. float: left;
  794. display: block;
  795. color: #fff;
  796. font-size: 0.8em;
  797. font-family: tahoma, sans-serif;
  798. text-transform: uppercase;
  799. text-decoration: none;
  800. }
  801. .buttonlist ul li a:hover, .buttonlist_bottom ul li a:hover
  802. {
  803. color: #e0e0ff;
  804. }
  805. .buttonlist ul li a span
  806. {
  807. background: url(../images/maintab_back.gif) repeat-x bottom left;
  808. display: block;
  809. padding: 0.1em 0.5em 0.5em 0.5em;
  810. }
  811. .buttonlist ul li.last a span
  812. {
  813. background: url(../images/maintab_last.gif) no-repeat bottom right;
  814. padding: 0.1em 1em 0.5em 0.5em;
  815. }
  816. .buttonlist ul li.active a span em
  817. {
  818. padding: 0.1em 0.5em 0.5em 0.5em;
  819. display: block;
  820. font-style: normal;
  821. background: url(../images/maintab_active_back.gif) repeat-x bottom right;
  822. }
  823. .buttonlist ul li.active a span
  824. {
  825. background: url(../images/maintab_active_first.gif) no-repeat bottom left;
  826. padding: 0 0 0 8px;
  827. }
  828. .buttonlist ul li.lastactive
  829. {
  830. float: left;
  831. background: url(../images/maintab_last.gif) no-repeat bottom right;
  832. padding: 0 8px 0 0;
  833. }
  834. .buttonlist ul li.active a
  835. {
  836. background: url(../images/maintab_active_last.gif) no-repeat bottom right;
  837. padding-right: 8px;
  838. }
  839. /* For links that are basically submit buttons. */
  840. .buttonlist_submit
  841. {
  842. background: transparent;
  843. color: #fff;
  844. text-transform: uppercase;
  845. vertical-align: top;
  846. text-decoration: none;
  847. font-size: 9px;
  848. font-family: tahoma, sans-serif;
  849. border: 0;
  850. }
  851. .buttonlist_submit:hover
  852. {
  853. color: #e0e0ff;
  854. }
  855. /* ..for the "bottom" menu */
  856. .buttonlist_bottom ul
  857. {
  858. background: url(../images/mirrortab_first.gif) no-repeat scroll left top;
  859. padding: 0 0 0 10px;
  860. }
  861. .buttonlist_bottom ul li a span
  862. {
  863. background: url(../images/mirrortab_back.gif) repeat-x top left;
  864. display: block;
  865. padding: 0.4em 0.5em 0.2em 0.5em;
  866. }
  867. .buttonlist_bottom ul li.last a span
  868. {
  869. background: url(../images/mirrortab_last.gif) no-repeat top right;
  870. padding: 0.4em 1em 0.2em 0.5em;
  871. }
  872. .buttonlist_bottom ul li.active a span em
  873. {
  874. padding: 0.4em 0.5em 0.2em 0.5em;
  875. display: block;
  876. font-style: normal;
  877. background: url(../images/mirrortab_active_back.gif) repeat-x top right;
  878. }
  879. .buttonlist_bottom ul li.active a span
  880. {
  881. background: url(../images/mirrortab_active_first.gif) no-repeat top left;
  882. padding: 0 0 0 8px;
  883. }
  884. .buttonlist_bottom ul li.lastactive
  885. {
  886. float: left;
  887. background: url(../images/mirrortab_last.gif) no-repeat top right;
  888. padding: 0 8px 0 0;
  889. }
  890. .buttonlist_bottom ul li.active a
  891. {
  892. background: url(../images/mirrortab_active_last.gif) no-repeat top right;
  893. padding-right: 8px;
  894. }
  895. /* The old-style button strips, with images */
  896. .oldbuttonlist
  897. {
  898. text-align: right;
  899. padding: 0.5em;
  900. }
  901. /* a smaller quick-button list */
  902. ul.quickbuttons
  903. {
  904. margin: 0.9em 11px 0 0;
  905. clear: right;
  906. float: right;
  907. text-align: right;
  908. }
  909. ul.quickbuttons li
  910. {
  911. float: left;
  912. display: inline;
  913. margin: 0 0 0 11px;
  914. }
  915. ul.quickbuttons li a
  916. {
  917. padding: 0 0 0.7em 20px;
  918. display: block;
  919. height: 20px;
  920. font: bold 0.85em/18px arial, sans-serif;
  921. float: left;
  922. }
  923. ul.quickbuttons li.quote_button
  924. {
  925. background: url(../images/buttons/quote.gif) no-repeat 0 0;
  926. }
  927. ul.quickbuttons li.remove_button
  928. {
  929. background: url(../images/buttons/delete.gif) no-repeat 0 0;
  930. }
  931. ul.quickbuttons li.modify_button
  932. {
  933. background: url(../images/buttons/modify.gif) no-repeat 0 0;
  934. }
  935. ul.quickbuttons li.approve_button
  936. {
  937. background: url(../images/buttons/approve.gif) no-repeat 0 0;
  938. }
  939. ul.quickbuttons li.restore_button
  940. {
  941. background: url(../images/buttons/restore_topic.gif) no-repeat 0 0;
  942. }
  943. ul.quickbuttons li.split_button
  944. {
  945. background: url(../images/buttons/split.gif) no-repeat 0 0;
  946. }
  947. ul.quickbuttons li.reply_button
  948. {
  949. background: url(../images/buttons/reply.gif) no-repeat 0 0;
  950. }
  951. ul.quickbuttons li.reply_all_button
  952. {
  953. background: url(../images/buttons/reply.gif) no-repeat 0 0;
  954. }
  955. ul.quickbuttons li.notify_button
  956. {
  957. background: url(../images/buttons/notify_sm.gif) no-repeat 0 0;
  958. }
  959. ul.quickbuttons li.inline_mod_check
  960. {
  961. margin: 0 0 0 5px;
  962. }
  963. .generic_tab_strip
  964. {
  965. margin: 0 1em 2em;
  966. }
  967. .generic_tab_strip .buttonlist
  968. {
  969. float: left !important;
  970. }
  971. /* the navigation list */
  972. ul#navigation
  973. {
  974. margin: 0;
  975. font-size: 0.9em;
  976. padding: 1em 0.4em;
  977. }
  978. ul#navigation li
  979. {
  980. float: none;
  981. font-size: 0.95em;
  982. display: inline;
  983. }
  984. /* Styles for the general looks for the Core theme.
  985. ------------------------------------------------------- */
  986. /* this is the main container surrounding everything, use this to set forum width, font-size etc. */
  987. #mainframe
  988. {
  989. font-size: 85%;
  990. width: 95%;
  991. margin: auto;
  992. }
  993. /* the forum name or logo */
  994. h1#forum_name
  995. {
  996. padding: 0.6em 0 0.6em 0;
  997. margin: 0;
  998. font-family: Verdana, helvetica, sans-serif;
  999. font-size: 135%;
  1000. color: #fff;
  1001. }
  1002. /* The greeting section */
  1003. #greeting_section
  1004. {
  1005. padding: 0.7em 0.4em 0.7em 0.4em;
  1006. clear: both;
  1007. }
  1008. #greeting_section li
  1009. {
  1010. font-weight: normal;
  1011. }
  1012. #greeting_section li#name
  1013. {
  1014. padding-left: 0.5em;
  1015. }
  1016. #greeting_section li em
  1017. {
  1018. font-style: normal;
  1019. font-weight: bold;
  1020. }
  1021. /* user section with all relevant links */
  1022. #user_section
  1023. {
  1024. padding: 1px;
  1025. margin: 1px 0 0 0;
  1026. font-size: 90%;
  1027. }
  1028. #user_section ul, #user_section form
  1029. {
  1030. padding: 0.5em 0.7em 0.5em 0.7em;
  1031. }
  1032. /* the avatar, located to the left */
  1033. #user_section #myavatar
  1034. {
  1035. padding: 0.7em;
  1036. border-right: 1px solid #adadad;
  1037. margin: 0 0.5em 0 0;
  1038. float: left;
  1039. }
  1040. /* the news and search areas */
  1041. #news_section
  1042. {
  1043. clear: both;
  1044. font-size: 0.8em;
  1045. padding: 0.5em 1em 0.5em 1em;
  1046. }
  1047. #random_news h3
  1048. {
  1049. margin-right: 1em;
  1050. font-size: 0.85em;
  1051. display: inline;
  1052. }
  1053. #random_news p
  1054. {
  1055. margin: 0;
  1056. padding: 0;
  1057. display: inline;
  1058. }
  1059. /* The main menu. */
  1060. .main_menu
  1061. {
  1062. padding-left: 1em;
  1063. }
  1064. .main_menu ul
  1065. {
  1066. list-style: none;
  1067. padding: 0;
  1068. margin: 0;
  1069. background: url(../images/maintab_first.gif) no-repeat bottom left;
  1070. padding-left: 10px;
  1071. }
  1072. .main_menu li
  1073. {
  1074. margin: 0;
  1075. padding: 0;
  1076. display: inline;
  1077. }
  1078. .main_menu li a:link, .main_menu li a:visited
  1079. {
  1080. float: left;
  1081. display: block;
  1082. color: #fff;
  1083. font-size: 0.8em;
  1084. font-family: tahoma, sans-serif;
  1085. text-transform: uppercase;
  1086. }
  1087. .main_menu li a:hover
  1088. {
  1089. color: #e0e0ff;
  1090. text-decoration: none;
  1091. }
  1092. .main_menu li a span
  1093. {
  1094. background: url(../images/maintab_back.gif) repeat-x bottom left;
  1095. display: block;
  1096. padding: 0.1em 0.5em 0.5em 0.5em;
  1097. }
  1098. .main_menu li.last a span
  1099. {
  1100. background: url(../images/maintab_last.gif) no-repeat bottom right;
  1101. padding: 0.1em 1em 0.5em 0.5em;
  1102. }
  1103. .main_menu li.active a span em
  1104. {
  1105. padding: 0.1em 0.5em 0.5em 0.5em;
  1106. display: block;
  1107. font-style: normal;
  1108. background: url(../images/maintab_active_back.gif) repeat-x bottom right;
  1109. }
  1110. .main_menu li.active a span
  1111. {
  1112. background: url(../images/maintab_active_first.gif) no-repeat bottom left;
  1113. padding: 0 0 0 8px;
  1114. }
  1115. .main_menu li.last.active
  1116. {
  1117. float: left;
  1118. background: url(../images/maintab_last.gif) no-repeat bottom right;
  1119. padding: 0 8px 0 0;
  1120. }
  1121. /* IE6 doesn't support multiple class selectors */
  1122. .main_menu li.lastactive
  1123. {
  1124. float: left;
  1125. padding: 0 8px 0 0;
  1126. background: url(../images/maintab_last.gif) no-repeat bottom right;
  1127. }
  1128. .main_menu li.active a
  1129. {
  1130. background: url(../images/maintab_active_last.gif) no-repeat bottom right;
  1131. padding-right: 8px;
  1132. }
  1133. /* the linktree */
  1134. ul.linktree
  1135. {
  1136. clear: both;
  1137. width: 100%;
  1138. list-style: none;
  1139. margin: 0;
  1140. padding: 1.5em 0.5em 0.5em 0.5em;
  1141. overflow: hidden;
  1142. }
  1143. ul.linktree li
  1144. {
  1145. float: left;
  1146. padding: 0 0.5em 0 0;
  1147. font-size: 0.8em;
  1148. }
  1149. ul.linktree li a
  1150. {
  1151. color: #000;
  1152. }
  1153. ul.linktree li a:hover
  1154. {
  1155. color: #cc3333;
  1156. }
  1157. ul.linktree li span
  1158. {
  1159. font-weight: bold;
  1160. }
  1161. /* the footer area */
  1162. #footerarea
  1163. {
  1164. padding: 1em 0 2em 0;
  1165. text-align: center;
  1166. }
  1167. #footerarea ul
  1168. {
  1169. margin: 0 auto 0 auto;
  1170. }
  1171. #footerarea ul li
  1172. {
  1173. text-align: center;
  1174. display: inline;
  1175. border-right: 1px solid #888;
  1176. margin: 0;
  1177. padding: 0 4px 0 2px;
  1178. }
  1179. /* Note: It is against the license to remove, alter or otherwise hide the copyright output from SMF so please do not alter the two sections below. */
  1180. #footerarea ul li.copyright
  1181. {
  1182. display: block;
  1183. line-height: 0;
  1184. font-size: small;
  1185. padding: 1em;
  1186. }
  1187. #footerarea ul li.copyright, #footerarea ul li.last
  1188. {
  1189. border-right: none;
  1190. }
  1191. /* page created in.. */
  1192. #footerarea p
  1193. {
  1194. clear: both;
  1195. text-align: left;
  1196. padding-left: 0.5em;
  1197. }
  1198. p#show_loadtime
  1199. {
  1200. display: block;
  1201. text-align: center;
  1202. }
  1203. /* the upshrink buttons */
  1204. #upshrink, #advsearch
  1205. {
  1206. margin: 0 1ex;
  1207. }
  1208. /* Styles for a typical table.
  1209. ------------------------------------------------------- */
  1210. table.table_list
  1211. {
  1212. width: 100%;
  1213. }
  1214. table.table_list p
  1215. {
  1216. padding: 0;
  1217. margin: 0;
  1218. }
  1219. table.table_list td,table.table_list th
  1220. {
  1221. padding: 5px;
  1222. }
  1223. table.table_list tbody.header td
  1224. {
  1225. padding: 0;
  1226. }
  1227. table.table_list tbody.content td.stats
  1228. {
  1229. font-size: 90%;
  1230. width: 15%;
  1231. text-align: center;
  1232. }
  1233. table.table_list tbody.content td.lastpost
  1234. {
  1235. line-height: 1.2em;
  1236. font-size: 85%;
  1237. width: 24%;
  1238. }
  1239. table.table_list tbody.content td.icon
  1240. {
  1241. text-align: center;
  1242. width: 6%;
  1243. }
  1244. /* Styles for headers.
  1245. ------------------------------------------------------- */
  1246. /* Styles for headers used in Curve templates. */
  1247. h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg, div.titlebg, .table_list tbody.header td
  1248. {
  1249. overflow: hidden;
  1250. line-height: 2em;
  1251. font-weight: bold;
  1252. }
  1253. h3.titlebg, h4.titlebg
  1254. {
  1255. border-left: 1px solid #adadad;
  1256. border-right: 1px solid #adadad;
  1257. }
  1258. h3.titlebg, h4.catbg
  1259. {
  1260. padding: 0 0.5em !important;
  1261. }
  1262. h3.catbg img.icon, div.titlebg img.icon, h3.catbg img
  1263. {
  1264. float: left;
  1265. margin: 5px 8px 0 0;
  1266. }
  1267. /* These are used primarily for titles, but also for headers (the row that says what everything in the table is.) */
  1268. .titlebg, tr.titlebg th, tr.titlebg td, .titlebg2, tr.titlebg2 th, tr.titlebg2 td
  1269. {
  1270. color: #000;
  1271. font-style: normal;
  1272. background: url(../images/titlebg.jpg) #E9F0F6 repeat-x;
  1273. border-bottom: 1px solid #9baebf;
  1274. border-top: 1px solid #fff;
  1275. padding-left: 10px;
  1276. padding-right: 10px;
  1277. }
  1278. .titlebg, .titlebg a:link, .titlebg a:visited
  1279. {
  1280. font-weight: bold;
  1281. color: #000;
  1282. font-style: normal;
  1283. }
  1284. .titlebg a:hover
  1285. {
  1286. color: #404040;
  1287. }
  1288. /* same as titlebg, but used where bold text is not needed */
  1289. .titlebg2 a:link, .titlebg2 a:visited
  1290. {
  1291. color: #000;
  1292. font-style: normal;
  1293. text-decoration: underline;
  1294. }
  1295. .titlebg2 a:hover
  1296. {
  1297. text-decoration: underline;
  1298. }
  1299. /* This is used for categories, page indexes, and several other areas in the forum.
  1300. .catbg and .catbg2 is for boardindex, while .catbg3 is for messageindex and display headers. */
  1301. .catbg, tr.catbg td, .catbg3, tr.catbg3 td
  1302. {
  1303. background: url(../images/catbg.jpg) #88A6C0 repeat-x;
  1304. color: #fff;
  1305. padding-left: 10px;
  1306. padding-right: 10px;
  1307. }
  1308. .catbg2, tr.catbg2 td
  1309. {
  1310. background: url(../images/catbg2.jpg) #A1BFD9 repeat-x;
  1311. color: #fff;
  1312. padding-left: 10px;
  1313. padding-right: 10px;
  1314. }
  1315. .catbg, .catbg2, .catbg3
  1316. {
  1317. border-bottom: 1px solid #375576;
  1318. }
  1319. .catbg, .catbg2
  1320. {
  1321. font-weight: bold;
  1322. }
  1323. .catbg3, tr.catbg3 td, .catbg3 a:link, .catbg3 a:visited
  1324. {
  1325. font-size: 95%;
  1326. color: #fff;
  1327. text-decoration: none;
  1328. }
  1329. .catbg a:link, .catbg a:visited, .catbg2 a:link, .catbg2 a:visited
  1330. {
  1331. color: #fff;
  1332. text-decoration: none;
  1333. }
  1334. .catbg a:hover, .catbg2 a:hover, .catbg3 a:hover
  1335. {
  1336. color: #e0e0ff;
  1337. }
  1338. /* Styles for the board index.
  1339. ------------------------------------------------- */
  1340. p#stats
  1341. {
  1342. text-align: right;
  1343. }
  1344. h3#newsfader
  1345. {
  1346. font-size: 1em;
  1347. }
  1348. #smfNewsFader
  1349. {
  1350. font-weight: bold;
  1351. line-height: 1.4em;
  1352. padding: 1em;
  1353. font-size: 1em;
  1354. text-align: center;
  1355. }
  1356. #upshrink_ic
  1357. {
  1358. margin-right: 2ex;
  1359. text-align: right;
  1360. }
  1361. .categoryframe
  1362. {
  1363. margin-top: 0.4em;
  1364. }
  1365. .categoryframe h3
  1366. {
  1367. margin: 0;
  1368. }
  1369. table.boardsframe
  1370. {
  1371. width: 100%;
  1372. }
  1373. table.boardsframe td.icon
  1374. {
  1375. text-align: center;
  1376. padding: 0.5em;
  1377. width: 6%;
  1378. }
  1379. table.boardsframe td.info
  1380. {
  1381. width: 60%;
  1382. padding: 0;
  1383. }
  1384. table.boardsframe td.info h4
  1385. {
  1386. padding: 0.4em 0.4em 0 0.4em;
  1387. margin: 0;
  1388. }
  1389. table.boardsframe td.info p
  1390. {
  1391. padding: 0 0.4em 0.5em 0.4em;
  1392. margin: 0;
  1393. }
  1394. table.boardsframe td.info p.moderators
  1395. {
  1396. font-size: 0.8em;
  1397. font-family: verdana, sans-serif;
  1398. }
  1399. table.boardsframe td.stats
  1400. {
  1401. width: 8%;
  1402. vertical-align: middle;
  1403. text-align: center;
  1404. }
  1405. table.boardsframe td.lastpost
  1406. {
  1407. width: 20%;
  1408. vertical-align: top;
  1409. padding: 0.5em;
  1410. }
  1411. #posticons
  1412. {
  1413. clear: both;
  1414. width: 100%;
  1415. }
  1416. #posticons .buttonlist
  1417. {
  1418. margin-right: 1em;
  1419. float: right;
  1420. }
  1421. /* the newsfader */
  1422. #smfFadeScroller
  1423. {
  1424. text-align: center;
  1425. overflow: auto;
  1426. color: #000000; /* shouldn't be shorthand style due to JS bug in IE! */
  1427. }
  1428. /* Styles for the info center on the board index.
  1429. ---------------------------------------------------- */
  1430. #infocenterframe
  1431. {
  1432. margin-top: 2em;
  1433. clear: both;
  1434. }
  1435. /* each section in infocenter has this class */
  1436. .infocenter_section
  1437. {
  1438. clear: both;
  1439. }
  1440. .infocenter_section p.section
  1441. {
  1442. display: block;
  1443. margin: 0;
  1444. width: 30px;
  1445. text-align: center;
  1446. float: left;
  1447. padding: 0.5em 0 0 0;
  1448. }
  1449. .infocenter_section div.sectionbody
  1450. {
  1451. margin-left: 30px;
  1452. padding: 0.3em;
  1453. border-left: 1px solid #a0a0a0;
  1454. min-height: 25px;
  1455. height: auto !important;
  1456. }
  1457. /* recent posts - or just one recent post */
  1458. dl#infocenter_recentposts
  1459. {
  1460. float: left;
  1461. width: 100%;
  1462. padding: 0;
  1463. margin: 0;
  1464. }
  1465. dl#infocenter_recentposts dt
  1466. {
  1467. clear: left;
  1468. float: left;
  1469. padding: 0.1em;
  1470. width: 68%;
  1471. white-space: nowrap;
  1472. overflow: hidden;
  1473. }
  1474. dl#infocenter_recentposts dd
  1475. {
  1476. clear: right;
  1477. float: right;
  1478. padding: 0.1em;
  1479. width: 25%;
  1480. text-align: right;
  1481. white-space: nowrap;
  1482. overflow: hidden;
  1483. }
  1484. /* login form */
  1485. form#infocenter_login ul.horizlist label
  1486. {
  1487. white-space: nowrap;
  1488. font-size: 90%;
  1489. font-weight: bold;
  1490. }
  1491. /* Styles for the message (topic) index.
  1492. ---------------------------------------------------- */
  1493. #childboards table
  1494. {
  1495. width: 100%;
  1496. }
  1497. .modbuttons
  1498. {
  1499. clear: both;
  1500. width: 100%;
  1501. }
  1502. .buttonlist, .buttonlist_bottom
  1503. {
  1504. margin-right: 1em;
  1505. float: right;
  1506. }
  1507. #messageindex td.icon1, #messageindex td.icon2
  1508. {
  1509. text-align: center;
  1510. padding: 0.5em;
  1511. width: 5%;
  1512. }
  1513. #messageindex td.subject
  1514. {
  1515. padding: 0.5em;
  1516. }
  1517. #messageindex td.starter
  1518. {
  1519. text-align: center;
  1520. padding: 0.5em;
  1521. width: 14%;
  1522. }
  1523. #messageindex td.replies
  1524. {
  1525. text-align: center;
  1526. padding: 0.5em;
  1527. width: 4%;
  1528. }
  1529. #messageindex td.views
  1530. {
  1531. text-align: center;
  1532. padding: 0.5em;
  1533. width: 4%;
  1534. }
  1535. #messageindex td.lastpost
  1536. {
  1537. padding: 0.5em;
  1538. width: 22%;
  1539. }
  1540. #messageindex td.moderation
  1541. {
  1542. text-align: center;
  1543. padding: 0.5em;
  1544. width: 4%;
  1545. }
  1546. #topic_icons p
  1547. {
  1548. display: block;
  1549. padding: 0.5em 0.5em 0.1em 0.5em;
  1550. margin: 0;
  1551. border-bottom: none;
  1552. font-weight: normal !important;
  1553. }
  1554. #topic_icons ul
  1555. {
  1556. display: block;
  1557. padding: 0.5em 1em 0.1em 1em;
  1558. margin: 0;
  1559. border-bottom: none;
  1560. font-weight: normal !important;
  1561. }
  1562. #message_index_jump_to
  1563. {
  1564. margin: 2em 4em 0 2em;
  1565. }
  1566. .lastpost img
  1567. {
  1568. float: right;
  1569. }
  1570. /* Styles for the display template (topic view).
  1571. ---------------------------------------------------- */
  1572. .linked_events
  1573. {
  1574. clear: both;
  1575. margin: 1em 0;
  1576. }
  1577. .linked_events .edit_event
  1578. {
  1579. color: #f00;
  1580. }
  1581. #moderationbuttons
  1582. {
  1583. margin-left: 0.5em;
  1584. }
  1585. #postbuttons .nav, #postbuttons_lower .nav
  1586. {
  1587. margin: 0.5em 0.5em 0 0;
  1588. text-align: right;
  1589. }
  1590. #postbuttons_lower .nav
  1591. {
  1592. margin: 0 0.5em 0.5em 0;
  1593. }
  1594. #postbuttons, #postbuttons_lower
  1595. {
  1596. text-align: right;
  1597. }
  1598. /* Poll question */
  1599. h4#pollquestion
  1600. {
  1601. padding: 1em 0 1em 2em;
  1602. }
  1603. /* Poll vote options */
  1604. #poll_options ul.options
  1605. {
  1606. border-top: 1px solid #696969;
  1607. padding: 1em 2.5em 0 2em;
  1608. margin: 0 0 1em 0;
  1609. }
  1610. #poll_options div.submitbutton
  1611. {
  1612. clear: both;
  1613. padding: 0 0 1em 2em;
  1614. }
  1615. #poll_options div.submitbutton.border
  1616. {
  1617. border-bottom: 1px solid #696969;
  1618. margin: 0 0 1em 0;
  1619. }
  1620. /* Poll results */
  1621. #poll_options dl.options
  1622. {
  1623. border: solid #696969;
  1624. border-width: 1px 0;
  1625. padding: 1em 2.5em 0 2em;
  1626. margin: 0 0 1em 0;
  1627. }
  1628. #poll_options dl.options dt.voted
  1629. {
  1630. font-weight: bold;
  1631. }
  1632. #poll_options dl.options dd
  1633. {
  1634. margin: 0.5em 0 1em 0;
  1635. }
  1636. /* Poll notices */
  1637. #poll_options p
  1638. {
  1639. margin: 0 1.5em 0.2em 1.5em;
  1640. padding: 0 0.5em 0.5em 0.5em;
  1641. }
  1642. div#pollmoderation
  1643. {
  1644. margin: -1em 0 0 2em;
  1645. padding: 0;
  1646. }
  1647. .approve_post
  1648. {
  1649. margin: 2ex;
  1650. padding: 1ex;
  1651. border: 2px dashed #cc3344;
  1652. color: #000;
  1653. font-weight: bold;
  1654. }
  1655. #forumposts h3.catbg3
  1656. {
  1657. font-weight: normal;
  1658. padding: 0.4em;
  1659. overflow: hidden;
  1660. }
  1661. #forumposts h3.catbg3 img
  1662. {
  1663. float: left;
  1664. vertical-align: middle;
  1665. }
  1666. #forumposts h3.catbg3 span
  1667. {
  1668. float: left;
  1669. padding-left: 2%;
  1670. }
  1671. #forumposts h3.catbg3 span#top_subject
  1672. {
  1673. padding-left: 9.5em;
  1674. }
  1675. .poster
  1676. {
  1677. width: 15em;
  1678. float: left;
  1679. }
  1680. .post
  1681. {
  1682. clear: right;
  1683. }
  1684. img.smiley
  1685. {
  1686. vertical-align: bottom;
  1687. }
  1688. .postarea
  1689. {
  1690. margin-left: 16em;
  1691. }
  1692. .messageicon
  1693. {
  1694. float: left;
  1695. margin: 0 0.5em 0.5em 0;
  1696. }
  1697. .messageicon img
  1698. {
  1699. padding: 6px 3px;
  1700. }
  1701. .keyinfo
  1702. {
  1703. float: left;
  1704. clear: none;
  1705. width: 50%;
  1706. min-height: 3em;
  1707. }
  1708. ul.postingbuttons
  1709. {
  1710. float: right;
  1711. padding: 0 0.5em 0 0;
  1712. }
  1713. ul.postingbuttons li
  1714. {
  1715. float: left;
  1716. margin: 0 0.5em 0 0;
  1717. }
  1718. .modifybutton
  1719. {
  1720. float: right;
  1721. margin: 0 0.5em 0.5em 0;
  1722. font: bold 0.85em arial, sans-serif;
  1723. color: #476c8e;
  1724. }
  1725. .attachments
  1726. {
  1727. padding-top: 1em;
  1728. overflow: auto;
  1729. }
  1730. .attachments hr
  1731. {
  1732. clear: both;
  1733. margin: 1em 0 1em 0;
  1734. }
  1735. .postfooter
  1736. {
  1737. margin-left: 16em;
  1738. }
  1739. .topborder
  1740. {
  1741. border-top: 1px solid #bbb;
  1742. }
  1743. .moderatorbar
  1744. {
  1745. clear: right;
  1746. margin: 1em 0 0 16em;
  1747. }
  1748. #pollmoderation, #moderationbuttons_strip
  1749. {
  1750. float: left;
  1751. }
  1752. /* Styles for the quick reply area.
  1753. ---------------------------------------------------- */
  1754. #quickReplyOptions #quickReplyWarning
  1755. {
  1756. border: none;
  1757. text-align: left;
  1758. margin: 0;
  1759. width: 25%;
  1760. float: left;
  1761. }
  1762. #quickReplyOptions #quickReplyContent
  1763. {
  1764. text-align: right;
  1765. float: left;
  1766. width: 67.5%;
  1767. padding: 1em;
  1768. border-left: 1px solid #aaa;
  1769. }
  1770. #quickReplyOptions #quickReplyContent textarea, #quickReplyOptions #quickReplyContent input
  1771. {
  1772. margin-bottom: .5em;
  1773. }
  1774. #quickReplyWarning
  1775. {
  1776. width: 20%;
  1777. float: left;
  1778. padding: 0.5em 1em;
  1779. }
  1780. #quickReplyContent
  1781. {
  1782. width: 75%;
  1783. float: right;
  1784. padding: 0.5em 0;
  1785. }
  1786. #quickReplyOptions .roundframe
  1787. {
  1788. overflow: hidden;
  1789. }
  1790. #quickReplyOptions form textarea
  1791. {
  1792. height: 100px;
  1793. width: 635px;
  1794. max-width: 100%;
  1795. min-width: 100%;
  1796. }
  1797. /* The jump to box */
  1798. #display_jump_to
  1799. {
  1800. clear: both;
  1801. padding: 5px;
  1802. }
  1803. /* Separator of posts. More useful in the print stylesheet. */
  1804. #forumposts .post_separator
  1805. {
  1806. display: none;
  1807. }
  1808. /* Styles for edit post section
  1809. ---------------------------------------------------- */
  1810. form#postmodify .roundframe
  1811. {
  1812. padding: 0 12%;
  1813. }
  1814. #post_header
  1815. {
  1816. margin-bottom: 0.5em;
  1817. padding: 0.5em;
  1818. overflow: hidden;
  1819. }
  1820. #post_header dt
  1821. {
  1822. float: left;
  1823. margin: 0;
  1824. padding: 0;
  1825. width: 15%;
  1826. margin: .3em 0;
  1827. font-weight: bold;
  1828. }
  1829. #post_header dd
  1830. {
  1831. float: left;
  1832. margin: 0;
  1833. padding: 0;
  1834. width: 83%;
  1835. margin: .3em 0;
  1836. }
  1837. #post_header img
  1838. {
  1839. vertical-align: middle;
  1840. }
  1841. ul.post_options
  1842. {
  1843. margin: 0 0 0 1em;
  1844. padding: 0;
  1845. list-style: none;
  1846. overflow: hidden;
  1847. }
  1848. ul.post_options li
  1849. {
  1850. margin: 0.2em 0;
  1851. width: 49%;
  1852. float: left;
  1853. }
  1854. #postAdditionalOptionsHeader
  1855. {
  1856. margin-top: 1em;
  1857. }
  1858. #postMoreOptions
  1859. {
  1860. border-bottom: 1px solid #666;
  1861. padding: 0.5em;
  1862. }
  1863. #postAttachment, #postAttachment2
  1864. {
  1865. overflow: hidden;
  1866. margin: .5em 0;
  1867. padding: 0;
  1868. border-bottom: 1px solid #666;
  1869. padding: 0.5em;
  1870. }
  1871. #postAttachment dd, #postAttachment2 dd
  1872. {
  1873. margin: .3em 0 .3em 1em;
  1874. }
  1875. #postAttachment dt, #postAttachment2 dt
  1876. {
  1877. font-weight: bold;
  1878. }
  1879. #postAttachment3
  1880. {
  1881. margin-left: 1em;
  1882. }
  1883. #post_confirm_strip, #shortcuts
  1884. {
  1885. padding: 1em 0 0 0;
  1886. }
  1887. .post_verification
  1888. {
  1889. margin-top: .5em;
  1890. }
  1891. .post_verification #verification_control
  1892. {
  1893. margin: .3em 0 .3em 1em;
  1894. }
  1895. /* The BBC buttons */
  1896. #bbcBox_message
  1897. {
  1898. margin: 1em 0 0.5em 0;
  1899. }
  1900. #bbcBox_message div
  1901. {
  1902. margin: 0.2em 0;
  1903. vertical-align: top;
  1904. }
  1905. #bbcBox_message div img
  1906. {
  1907. margin: 0 1px 0 0;
  1908. vertical-align: top;
  1909. }
  1910. #bbcBox_message select
  1911. {
  1912. margin: 0 2px;
  1913. }
  1914. /* The smiley strip */
  1915. #smileyBox_message
  1916. {
  1917. margin: 0.75em 0 0.5em 0;
  1918. }
  1919. /* Styles for edit event section
  1920. ---------------------------------------------------- */
  1921. #post_event .roundframe
  1922. {
  1923. padding: 1% 12%;
  1924. }
  1925. #post_event fieldset
  1926. {
  1927. margin-bottom: 0.5em;
  1928. border: 1px solid #c4c4c4;
  1929. padding: 0.5em;
  1930. clear: both;
  1931. }
  1932. #post_event legend
  1933. {
  1934. font-weight: bold;
  1935. color: #000;
  1936. }
  1937. #post_event #event_main input
  1938. {
  1939. margin: 0 0 1em 0;
  1940. float: left;
  1941. }
  1942. #post_event #event_main div.smalltext
  1943. {
  1944. width: 33em;
  1945. float: right;
  1946. }
  1947. #post_event div.event_options
  1948. {
  1949. float: right;
  1950. }
  1951. #post_event ul.event_main, ul.event_options
  1952. {
  1953. padding: 0;
  1954. overflow: hidden;
  1955. }
  1956. #post_event ul.event_main li
  1957. {
  1958. list-style-type: none;
  1959. margin: 0.2em 0;
  1960. width: 49%;
  1961. float: left;
  1962. }
  1963. #post_event ul.event_options
  1964. {
  1965. margin: 0;
  1966. padding: 0 0 .7em .7em;
  1967. }
  1968. #post_event ul.event_options li
  1969. {
  1970. list-style-type: none;
  1971. margin: 0;
  1972. float: left;
  1973. }
  1974. #post_event #event_main select, #post_event ul.event_options li select, #post_event ul.event_options li .input_check
  1975. {
  1976. margin: 0 1em 0 0;
  1977. }
  1978. /* Styles for edit poll section.
  1979. ---------------------------------------------------- */
  1980. #edit_poll
  1981. {
  1982. overflow: hidden;
  1983. }
  1984. #edit_poll fieldset
  1985. {
  1986. margin: 0.5em 0;
  1987. border: 1px solid #c4c4c4;
  1988. padding: 0.5em;
  1989. clear: both;
  1990. overflow: hidden;
  1991. }
  1992. #edit_poll legend
  1993. {
  1994. font-weight: bold;
  1995. color: #000;
  1996. }
  1997. #edit_poll fieldset input
  1998. {
  1999. margin-left: 8.6em;
  2000. }
  2001. #edit_poll ul.poll_main li
  2002. {
  2003. padding-left: 1em;
  2004. }
  2005. #edit_poll ul.poll_main input
  2006. {
  2007. margin-left: 1em;
  2008. }
  2009. #edit_poll ul.poll_main, dl.poll_options
  2010. {
  2011. overflow: hidden;
  2012. padding: 0 0 .7em .7em;
  2013. list-style: none;
  2014. }
  2015. #edit_poll ul.poll_main li
  2016. {
  2017. margin: 0.2em 0;
  2018. }
  2019. #edit_poll dl.poll_options dt
  2020. {
  2021. width: 33%;
  2022. padding: 0 0 0 1em;
  2023. }
  2024. #edit_poll dl.poll_options dd
  2025. {
  2026. width: 65%;
  2027. }
  2028. #edit_poll dl.poll_options dd input
  2029. {
  2030. margin-left: 0;
  2031. }
  2032. /* Styles for the recent messages section.
  2033. ---------------------------------------------------- */
  2034. .readbuttons
  2035. {
  2036. clear: both;
  2037. width: 100%;
  2038. }
  2039. .buttonlist, .buttonlist_bottom
  2040. {
  2041. margin-right: 1em;
  2042. float: right;
  2043. }
  2044. /* Styles for the move topic section.
  2045. ---------------------------------------------------- */
  2046. #move_topic dl
  2047. {
  2048. margin-bottom: 0;
  2049. }
  2050. .move_topic
  2051. {
  2052. width: 710px;
  2053. margin: auto;
  2054. text-align: left;
  2055. }
  2056. div.move_topic fieldset
  2057. {
  2058. margin: 0.5em 0;
  2059. border: 1px solid #cacdd3;
  2060. padding: 0.5em;
  2061. }
  2062. /* Styles for the send topic section.
  2063. ---------------------------------------------------- */
  2064. fieldset.send_topic
  2065. {
  2066. margin-bottom: 0.5em;
  2067. border: none;
  2068. padding: 0.5em;
  2069. }
  2070. dl.send_topic
  2071. {
  2072. margin-bottom: 0;
  2073. }
  2074. dl.send_mail dt
  2075. {
  2076. width: 35%;
  2077. }
  2078. dl.send_mail dd
  2079. {
  2080. width: 64%;
  2081. }
  2082. /* Styles for the split topic section.
  2083. ---------------------------------------------------- */
  2084. div#selected, div#not_selected
  2085. {
  2086. width: 49%;
  2087. }
  2088. ul.split_messages li.windowbg, ul.split_messages li.windowbg2
  2089. {
  2090. border: 1px solid #adadad;
  2091. padding: 1em;
  2092. margin: 1px;
  2093. }
  2094. ul.split_messages li a.split_icon
  2095. {
  2096. padding: 0 0.5em;
  2097. }
  2098. ul.split_messages div.post
  2099. {
  2100. padding: 1em 0 0 0;
  2101. border-top: 1px solid #fff;
  2102. }
  2103. /* Styles for the report topic section.
  2104. ---------------------------------------------------- */
  2105. #report_topic dl
  2106. {
  2107. margin-bottom: 0;
  2108. }
  2109. #report_topic dl.settings dt
  2110. {
  2111. width: 20%;
  2112. }
  2113. #report_topic dl.settings dd
  2114. {
  2115. width: 79%;
  2116. }
  2117. /* Styles for the merge topic section.
  2118. ---------------------------------------------------- */
  2119. ul.merge_topics li
  2120. {
  2121. list-style-type: none;
  2122. }
  2123. dl.merge_topic dt
  2124. {
  2125. width: 25%;
  2126. }
  2127. dl.merge_topic dd
  2128. {
  2129. width: 74%;
  2130. }
  2131. fieldset.merge_options
  2132. {
  2133. margin-bottom: 0.5em;
  2134. }
  2135. fieldset.merge_options legend
  2136. {
  2137. font-weight: bold;
  2138. }
  2139. .custom_subject
  2140. {
  2141. margin: 0.5em 0;
  2142. }
  2143. /* Styles for the login areas.
  2144. ------------------------------------------------------- */
  2145. .login
  2146. {
  2147. width: 540px;
  2148. margin: 0 auto;
  2149. }
  2150. .login dl
  2151. {
  2152. overflow: auto;
  2153. clear: right;
  2154. }
  2155. .login dt, .login dd
  2156. {
  2157. margin: 0 0 0.4em 0;
  2158. width: 44%;
  2159. padding: 0.1em;
  2160. }
  2161. .login dt
  2162. {
  2163. float: left;
  2164. clear: both;
  2165. text-align: right;
  2166. font-weight: bold;
  2167. }
  2168. .login dd
  2169. {
  2170. width: 54%;
  2171. float: right;
  2172. text-align: left;
  2173. }
  2174. .login p
  2175. {
  2176. text-align: center;
  2177. }
  2178. .login h3 img
  2179. {
  2180. float: left;
  2181. margin: 4px 0.5em 0 0;
  2182. }
  2183. /* Styles for the registration section.
  2184. ------------------------------------------------------- */
  2185. .register_error
  2186. {
  2187. border: 1px dashed red;
  2188. padding: 5px;
  2189. margin: 0 1ex 1ex 1ex;
  2190. }
  2191. .register_error span
  2192. {
  2193. text-decoration: underline;
  2194. }
  2195. /* Additional profile fields */
  2196. dl.register_form
  2197. {
  2198. margin: 0;
  2199. clear: right;
  2200. overflow: auto;
  2201. }
  2202. dl.register_form dt
  2203. {
  2204. font-weight: normal;
  2205. float: left;
  2206. clear: both;
  2207. width: 50%;
  2208. margin: 0.5em 0 0 0;
  2209. }
  2210. dl.register_form dt strong
  2211. {
  2212. font-weight: bold;
  2213. }
  2214. dl.register_form dt span
  2215. {
  2216. display: block;
  2217. }
  2218. dl.register_form dd
  2219. {
  2220. float: left;
  2221. width: 49%;
  2222. margin: 0.5em 0 0 0;
  2223. }
  2224. #confirm_buttons
  2225. {
  2226. text-align: center;
  2227. padding: 1em 0;
  2228. }
  2229. .coppa_contact
  2230. {
  2231. padding: 4px;
  2232. width: 32ex;
  2233. background-color: #fff;
  2234. color: #000;
  2235. margin-left: 5ex;
  2236. border: 1px solid #000;
  2237. }
  2238. .valid_input
  2239. {
  2240. background-color: #f5fff0;
  2241. }
  2242. .invalid_input
  2243. {
  2244. background-color: #fff0f0;
  2245. }
  2246. /* Styles for maintenance mode.
  2247. ------------------------------------------------------- */
  2248. #maintenance_mode
  2249. {
  2250. width: 75%;
  2251. min-width: 520px;
  2252. text-align: left;
  2253. }
  2254. #maintenance_mode img.floatleft
  2255. {
  2256. margin-right: 1em;
  2257. }
  2258. /* common for all admin sections */
  2259. h3.titlebg img
  2260. {
  2261. vertical-align: middle;
  2262. margin-right: 0.5em;
  2263. }
  2264. tr.titlebg td
  2265. {
  2266. padding-left: 0.7em;
  2267. }
  2268. #admin_menu
  2269. {
  2270. min-height: 2em;
  2271. padding-left: 0;
  2272. }
  2273. #admin_content
  2274. {
  2275. clear: left;
  2276. }
  2277. #admin_login .centertext
  2278. {
  2279. padding: 1em;
  2280. }
  2281. #admin_login .centertext .error
  2282. {
  2283. padding: 0 0 1em 0;
  2284. }
  2285. /* Styles for sidebar menus.
  2286. ------------------------------------------------------- */
  2287. .left_admmenu, .left_admmenu ul, .left_admmenu li
  2288. {
  2289. padding: 0;
  2290. margin: 0;
  2291. list-style: none;
  2292. }
  2293. #left_admsection
  2294. {
  2295. background-color: #ecedf3;
  2296. padding: 1px;
  2297. border: 1px solid #ADADAD;
  2298. width: 160px;
  2299. float: left;
  2300. margin-right: 10px;
  2301. }
  2302. .adm_section h4.titlebg
  2303. {
  2304. font-size: 95%;
  2305. margin-bottom: 5px;
  2306. }
  2307. #main_container
  2308. {
  2309. position: relative;
  2310. }
  2311. .left_admmenu li
  2312. {
  2313. padding: 0 0 0 0.5em;
  2314. }
  2315. .left_admmenu
  2316. {
  2317. margin-bottom: 1.1em;
  2318. }
  2319. #main_admsection
  2320. {
  2321. position: relative;
  2322. left: 0;
  2323. right: 0;
  2324. overflow: hidden;
  2325. }
  2326. tr.windowbg td, tr.windowbg2 td, tr.approvebg td, tr.highlight2 td
  2327. {
  2328. padding: 0.3em 0.7em;
  2329. }
  2330. #credits p
  2331. {
  2332. padding: 0;
  2333. font-style: italic;
  2334. margin: 0;
  2335. }
  2336. /* Styles for generic tables.
  2337. ------------------------------------------------------- */
  2338. .topic_table table
  2339. {
  2340. width: 100%;
  2341. }
  2342. .topic_table .icon1, .topic_table .icon2, .topic_table .stats
  2343. {
  2344. text-align: center;
  2345. }
  2346. #topic_icons
  2347. {
  2348. margin-top: 1em;
  2349. }
  2350. #topic_icons .description
  2351. {
  2352. margin: 0;
  2353. }
  2354. .topic_table table thead
  2355. {
  2356. border-bottom: 1px solid #fff;
  2357. }
  2358. /* the subject column */
  2359. .topic_table td
  2360. {
  2361. font-size: 1em;
  2362. }
  2363. .topic_table td.subject
  2364. {
  2365. padding: 4px;
  2366. }
  2367. .topic_table td.subject p, .topic_table td.stats, .topic_table td.lastpost
  2368. {
  2369. font-size: 0.85em;
  2370. padding: 0;
  2371. margin: 0;
  2372. }
  2373. .topic_table td.lastpost, .topic_table td.lastpost
  2374. {
  2375. font-size: 0.9em;
  2376. line-height: 100%;
  2377. padding: 4px;
  2378. }
  2379. .topic_table td.stickybg2
  2380. {
  2381. background-image: url(../images/icons/quick_sticky.gif);
  2382. background-repeat: no-repeat;
  2383. background-position: 98% 4px;
  2384. }
  2385. .topic_table td.lockedbg2
  2386. {
  2387. background-image: url(../images/icons/quick_lock.gif);
  2388. background-repeat: no-repeat;
  2389. background-position: 98% 4px;
  2390. }
  2391. .topic_table td.lastpost
  2392. {
  2393. background-image: none;
  2394. }
  2395. /* Styles for (fatal) errors.
  2396. ------------------------------------------------- */
  2397. #fatal_error
  2398. {
  2399. border: 1px solid #aaa;
  2400. }
  2401. .errorbox
  2402. {
  2403. padding: 1em;
  2404. border: 1px solid #cc3344;
  2405. color: #000;
  2406. background-color: #ffe4e9;
  2407. margin: 1em 0;
  2408. }
  2409. .errorbox h3
  2410. {
  2411. padding: 0;
  2412. margin: 0;
  2413. font-size: 1.1em;
  2414. text-decoration: underline;
  2415. }
  2416. .errorbox p
  2417. {
  2418. margin: 1em 0 0 0;
  2419. }
  2420. .errorbox p.alert
  2421. {
  2422. padding: 0;
  2423. margin: 0;
  2424. float: left;
  2425. width: 1em;
  2426. font-size: 1.5em;
  2427. }
  2428. /* Styles for the profile section.
  2429. ------------------------------------------------- */
  2430. dl
  2431. {
  2432. overflow: auto;
  2433. margin: 0;
  2434. padding: 0;
  2435. }
  2436. /* Fixes for the core theme */
  2437. #profileview
  2438. {
  2439. padding: 1px;
  2440. border: 1px solid #696969;
  2441. background-color: #ecedf3;
  2442. }
  2443. #profileview .content
  2444. {
  2445. border: none;
  2446. }
  2447. #basicinfo .content
  2448. {
  2449. padding: 1em;
  2450. }
  2451. #detailedinfo .content
  2452. {
  2453. padding: 0.7em 1.2em;
  2454. border-left: 1px solid #aaa;
  2455. }
  2456. /* The basic user info on the left */
  2457. #basicinfo
  2458. {
  2459. width: 20%;
  2460. float: left;
  2461. }
  2462. #detailedinfo
  2463. {
  2464. width: 78%;
  2465. float: right;
  2466. }
  2467. #basicinfo h4
  2468. {
  2469. font-size: 135%;
  2470. font-weight: 100;
  2471. line-height: 105%;
  2472. white-space: pre-wrap; /* css-2.1 */
  2473. word-wrap: break-word; /* Internet Explorer 5.5+ */
  2474. overflow: hidden;
  2475. }
  2476. #basicinfo h4 span.position
  2477. {
  2478. font-size: 80%;
  2479. font-weight: 100;
  2480. display: block;
  2481. }
  2482. #basicinfo img.avatar
  2483. {
  2484. display: block;
  2485. margin: 10px 0 0 0;
  2486. }
  2487. #basicinfo ul
  2488. {
  2489. list-style-type: none;
  2490. margin: 10px 0 0 0;
  2491. }
  2492. #basicinfo ul li
  2493. {
  2494. display: block;
  2495. float: left;
  2496. margin-right: 5px;
  2497. height: 20px;
  2498. }
  2499. #basicinfo span#userstatus
  2500. {
  2501. display: block;
  2502. clear: both;
  2503. }
  2504. #basicinfo span#userstatus img
  2505. {
  2506. vertical-align: middle;
  2507. }
  2508. #detailedinfo div.content dl, #tracking div.content dl
  2509. {
  2510. clear: right;
  2511. overflow: auto;
  2512. margin: 0 0 18px 0;
  2513. padding: 0 0 15px 0;
  2514. border-bottom: 1px solid #ccc;
  2515. }
  2516. #detailedinfo div.content dt, #tracking div.content dt
  2517. {
  2518. width: 30%;
  2519. float: left;
  2520. margin: 0 0 3px 0;
  2521. padding: 0;
  2522. font-weight: bold;
  2523. clear: both;
  2524. }
  2525. #detailedinfo div.content dd, #tracking div.content dd
  2526. {
  2527. width: 70%;
  2528. float: left;
  2529. margin: 0 0 3px 0;
  2530. padding: 0;
  2531. }
  2532. #detailedinfo div.content dl.noborder
  2533. {
  2534. border-bottom: 0;
  2535. }
  2536. #detailedinfo div.content dt.clear
  2537. {
  2538. width: 100%;
  2539. }
  2540. .signature, .custom_fields_above_signature, .attachments
  2541. {
  2542. width: 98%;
  2543. overflow: auto;
  2544. clear: right;
  2545. border-top: 1px solid #666;
  2546. }
  2547. .signature h5
  2548. {
  2549. font-size: 100%;
  2550. margin-bottom: 10px;
  2551. }
  2552. #personal_picture
  2553. {
  2554. display: block;
  2555. margin-bottom: 0.3em;
  2556. }
  2557. #avatar_server_stored div
  2558. {
  2559. float: left;
  2560. }
  2561. #main_admsection #basicinfo, #main_admsection #detailedinfo
  2562. {
  2563. width: 100%;
  2564. }
  2565. #main_admsection #detailedinfo .content
  2566. {
  2567. border: none !important;
  2568. }
  2569. #main_admsection #basicinfo
  2570. {
  2571. border-bottom: 1px solid #ccc;
  2572. }
  2573. #main_admsection #basicinfo h4
  2574. {
  2575. float: left;
  2576. }
  2577. #main_admsection #basicinfo img.avatar
  2578. {
  2579. float: right;
  2580. vertical-align: top;
  2581. }
  2582. #main_admsection #basicinfo ul
  2583. {
  2584. clear: left;
  2585. padding-top: 10px;
  2586. }
  2587. #main_admsection #basicinfo span#userstatus
  2588. {
  2589. clear: left;
  2590. }
  2591. #main_admsection #basicinfo p#infolinks
  2592. {
  2593. display: none;
  2594. clear: both;
  2595. }
  2596. #main_admsection #basicinfo .botslice
  2597. {
  2598. clear: both;
  2599. }
  2600. /* Simple feedback messages */
  2601. div#profile_error, div#profile_success
  2602. {
  2603. margin: 0 0 1em 0;
  2604. padding: 1em 2em;
  2605. border: 1px solid;
  2606. }
  2607. div#profile_error
  2608. {
  2609. border-color: red;
  2610. color: red;
  2611. background: #fee;
  2612. }
  2613. div#profile_error span
  2614. {
  2615. text-decoration: underline;
  2616. }
  2617. div#profile_success
  2618. {
  2619. border-color: green;
  2620. color: green;
  2621. background: #efe;
  2622. }
  2623. /* Profile statistics */
  2624. #generalstats div.content dt
  2625. {
  2626. width: 50%;
  2627. float: left;
  2628. margin: 0 0 3px 0;
  2629. padding: 0;
  2630. font-weight: bold;
  2631. clear: both;
  2632. }
  2633. #generalstats div.content dd
  2634. {
  2635. width: 50%;
  2636. float: left;
  2637. margin: 0 0 3px 0;
  2638. padding: 0;
  2639. }
  2640. /* Activity by time */
  2641. .activity_stats
  2642. {
  2643. margin: 0;
  2644. padding: 0;
  2645. list-style: none;
  2646. }
  2647. .activity_stats li
  2648. {
  2649. width: 4.16%;
  2650. float: left;
  2651. }
  2652. .activity_stats li span
  2653. {
  2654. display: block;
  2655. border: solid #000;
  2656. border-width: 1px 1px 0 0;
  2657. text-align: center;
  2658. }
  2659. .activity_stats li.last span
  2660. {
  2661. border-right: none;
  2662. }
  2663. .activity_stats li div.bar
  2664. {
  2665. margin: 0 auto;
  2666. width: 15px;
  2667. }
  2668. .activity_stats li div.bar div
  2669. {
  2670. background: url('../images/bar.gif');
  2671. }
  2672. .activity_stats li div.bar span
  2673. {
  2674. position: absolute;
  2675. top: -1000em;
  2676. left: -1000em;
  2677. }
  2678. /* Most popular boards by posts and activity */
  2679. #popularposts
  2680. {
  2681. width: 50%;
  2682. float: left;
  2683. }
  2684. #popularactivity
  2685. {
  2686. width: 50%;
  2687. float: right;
  2688. }
  2689. #popularposts div.content dt, #popularactivity div.content dt
  2690. {
  2691. width: 65%;
  2692. float: left;
  2693. margin: 0 0 3px 0;
  2694. padding: 0;
  2695. font-weight: bold;
  2696. clear: both;
  2697. }
  2698. #popularposts div.content dd, #popularactivity div.content dd
  2699. {
  2700. width: 35%;
  2701. float: left;
  2702. margin: 0 0 3px 0;
  2703. padding: 0;
  2704. }
  2705. .profile_pie
  2706. {
  2707. background-image: url(../images/stats_pie.png);
  2708. float: left;
  2709. height: 20px;
  2710. width: 20px;
  2711. margin: 0 1em 0 0;
  2712. padding: 0;
  2713. text-indent: -1000em;
  2714. }
  2715. /* View posts */
  2716. .time
  2717. {
  2718. float: right;
  2719. }
  2720. .counter
  2721. {
  2722. margin: 0 0 0 0;
  2723. padding: 0.2em 0.5em 0.1em 0.2em;
  2724. font-size: 2.2em;
  2725. font-weight: bold;
  2726. color: #354c5f;
  2727. float: left;
  2728. }
  2729. .list_posts
  2730. {
  2731. border-top: 1px solid #adadad;
  2732. padding-top: 1em;
  2733. margin-top: 0.5em;
  2734. }
  2735. div.core_posts
  2736. {
  2737. border: 1px solid #adadad;
  2738. margin-bottom: 3px;
  2739. }
  2740. div.core_posts div.content
  2741. {
  2742. background: none;
  2743. border: none;
  2744. }
  2745. .topic h4
  2746. {
  2747. margin: 3px 0;
  2748. }
  2749. .mod_icons
  2750. {
  2751. text-align: right;
  2752. margin-right: 1em;
  2753. }
  2754. #permissions div.tborder
  2755. {
  2756. margin-bottom: 2em;
  2757. }
  2758. #permissions ul
  2759. {
  2760. padding: 0;
  2761. margin: 1px 0 0 0;
  2762. border-top: 1px solid #e5e5e8;
  2763. float: left;
  2764. width: 100%;
  2765. }
  2766. #permissions div.permission_name
  2767. {
  2768. width: 48%;
  2769. list-style: none;
  2770. border-right: 1px solid #e5e5e8;
  2771. background: #ecedf3;
  2772. margin: 0 1% 0 0;
  2773. padding: 0.7em 0.7em 0.8em 0.7em;
  2774. line-height: 1em;
  2775. }
  2776. #permissions li
  2777. {
  2778. width: 100%;
  2779. padding: 0;
  2780. list-style: none;
  2781. margin: 0 0 1px 0;
  2782. }
  2783. #permissions li span.permission_status, #permissions li span.alert
  2784. {
  2785. line-height: 2.9em;
  2786. font-size: 0.85em;
  2787. }
  2788. #tracking div.content dl
  2789. {
  2790. border-bottom: 0;
  2791. margin: 0;
  2792. padding: 0;
  2793. }
  2794. #creator dl
  2795. {
  2796. margin: 0;
  2797. }
  2798. #creator dt
  2799. {
  2800. width: 40%;
  2801. float: left;
  2802. clear: both;
  2803. margin: 0 0 10px 0;
  2804. }
  2805. #creator dd
  2806. {
  2807. float: left;
  2808. width: 60%;
  2809. margin: 0 0 10px 0;
  2810. overflow: auto;
  2811. }
  2812. .ignoreboards
  2813. {
  2814. margin: 0 2%;
  2815. padding: 0;
  2816. width: 45%;
  2817. }
  2818. .ignoreboards a
  2819. {
  2820. font-weight: bold;
  2821. text-decoration: none;
  2822. border-bottom: 1px solid #c4c4c4;
  2823. padding: 0.1em 0;
  2824. }
  2825. .ignoreboards a:hover
  2826. {
  2827. text-decoration: none;
  2828. border-bottom: 1px solid #476c8e;
  2829. }
  2830. .ignoreboards ul
  2831. {
  2832. margin: 0;
  2833. padding: 0;
  2834. }
  2835. .ignoreboards li
  2836. {
  2837. list-style: none;
  2838. float: left;
  2839. clear: both;
  2840. }
  2841. .ignoreboards li.category
  2842. {
  2843. margin: 0.7em 0 0 0;
  2844. width: 100%;
  2845. }
  2846. .ignoreboards li ul
  2847. {
  2848. margin: 0.2em 0 0 0;
  2849. }
  2850. .ignoreboards li.category ul li.board
  2851. {
  2852. width: 93%;
  2853. }
  2854. #theme_settings
  2855. {
  2856. overflow: auto;
  2857. margin: 0;
  2858. padding: 0;
  2859. }
  2860. #theme_settings li
  2861. {
  2862. list-style: none;
  2863. margin: 10px 0;
  2864. padding: 0;
  2865. }
  2866. /*Paid Subscriptions*/
  2867. #paid_subscription
  2868. {
  2869. width: 100%;
  2870. }
  2871. #paid_subscription dl.settings
  2872. {
  2873. margin-bottom: 0;
  2874. }
  2875. #paid_subscription dl.settings dd, #paid_subscription dl.settings dt
  2876. {
  2877. margin-bottom: 4px;
  2878. }
  2879. /*pick theme*/
  2880. #pick_theme
  2881. {
  2882. width: 100%;
  2883. float: left;
  2884. }
  2885. /*Issue a warning*/
  2886. #warn_body{
  2887. width: 80%;
  2888. font-size: 0.9em;
  2889. }
  2890. /* Styles for the statistics center.
  2891. ------------------------------------------------- */
  2892. #statistics
  2893. {
  2894. padding-bottom: 0.5em;
  2895. }
  2896. #statistics h4.titlebg
  2897. {
  2898. text-align: center;
  2899. margin-bottom: 5px;
  2900. }
  2901. #stats_left, #top_posters, #top_topics_replies, #top_topics_starter
  2902. {
  2903. float: left;
  2904. width: 49.5%;
  2905. }
  2906. #stats_right, #top_boards, #top_topics_views, #most_online
  2907. {
  2908. float: right;
  2909. width: 49.5%;
  2910. }
  2911. dl.stats
  2912. {
  2913. clear: both;
  2914. overflow: hidden;
  2915. margin: 0;
  2916. padding: 0;
  2917. }
  2918. dl.stats dt
  2919. {
  2920. width: 49%;
  2921. float: left;
  2922. margin: 0 0 4px 0;
  2923. line-height: 16px;
  2924. padding: 0;
  2925. clear: both;
  2926. font-size: 1em;
  2927. }
  2928. dl.stats dd
  2929. {
  2930. text-align: right;
  2931. width: 50%;
  2932. font-size: 1em;
  2933. float: right;
  2934. margin: 0 0 4px 0;
  2935. line-height: 16px;
  2936. padding: 0;
  2937. }
  2938. .stats_bar
  2939. {
  2940. float: left;
  2941. background-image: url(../images/bar_stats.png);
  2942. height: 16px;
  2943. font-size: 0.9em;
  2944. display: block;
  2945. text-align: left;
  2946. color: #fff;
  2947. font-weight: bold;
  2948. background-position: top center;
  2949. }
  2950. .stats_bar span
  2951. {
  2952. padding-left: 2px;
  2953. }
  2954. /* Styles for the personal messages section.
  2955. ------------------------------------------------- */
  2956. #personal_messages
  2957. {
  2958. padding: 1px;
  2959. }
  2960. #personal_messages #top_subject
  2961. {
  2962. padding-left: 11.75em !important;
  2963. }
  2964. #personal_messages div.labels
  2965. {
  2966. padding: 0 1em 0 0;
  2967. }
  2968. #personal_messages .capacity_bar
  2969. {
  2970. background: #fff;
  2971. border: 1px solid #000;
  2972. height: 7px;
  2973. width: 75%;
  2974. margin: 0 auto;
  2975. }
  2976. #personal_messages .capacity_bar div
  2977. {
  2978. border: none;
  2979. height: 7px;
  2980. }
  2981. #personal_messages .capacity_bar div.empty
  2982. {
  2983. background: #468008;
  2984. }
  2985. #personal_messages .capacity_bar div.filled
  2986. {
  2987. background: #EEA800;
  2988. }
  2989. #personal_messages .capacity_bar div.full
  2990. {
  2991. background: #A53D05;
  2992. }
  2993. #personal_messages .reportlinks
  2994. {
  2995. padding: 0.5em 1.3em;
  2996. }
  2997. #searchLabelsExpand li
  2998. {
  2999. padding: 0.3em 0.5em;
  3000. }
  3001. /* Styles for the calendar section.
  3002. ------------------------------------------------- */
  3003. .calendar_table
  3004. {
  3005. margin-bottom: 0.7em;
  3006. }
  3007. /* Used to indicate the current day in the grid. */
  3008. .calendar_today
  3009. {
  3010. background-color: #fff;
  3011. }
  3012. #month_grid
  3013. {
  3014. width: 200px;
  3015. text-align: center;
  3016. float: left;
  3017. }
  3018. #month_grid table
  3019. {
  3020. width: 200px;
  3021. border-collapse: collapse;
  3022. border: 1px solid #adadad;
  3023. }
  3024. #month_grid table td, #month_grid table th
  3025. {
  3026. border: 1px solid #adadad;
  3027. }
  3028. #main_grid table
  3029. {
  3030. width: 100%;
  3031. padding-bottom: 4px;
  3032. border-collapse: collapse;
  3033. border: 1px solid #adadad;
  3034. }
  3035. #main_grid table td, #main_grid table th
  3036. {
  3037. border: 1px solid #adadad;
  3038. }
  3039. #main_grid table h3.catbg
  3040. {
  3041. text-align: center;
  3042. border-top: 1px solid #adadad;
  3043. border-bottom: none;
  3044. }
  3045. #main_grid table h4
  3046. {
  3047. border: none;
  3048. }
  3049. #main_grid table.weeklist td.windowbg
  3050. {
  3051. text-align: center;
  3052. height: 49px;
  3053. width: 25px;
  3054. font-size: large;
  3055. padding: 0 7px;
  3056. border-bottom: 1px solid #adadad;
  3057. }
  3058. #main_grid table.weeklist td.weekdays
  3059. {
  3060. height: 49px;
  3061. width: 100%;
  3062. padding: 4px;
  3063. text-align: left;
  3064. vertical-align: middle;
  3065. border-right: 1px solid #adadad;
  3066. border-bottom: 1px solid #adadad;
  3067. }
  3068. #main_grid h3.weekly
  3069. {
  3070. text-align: center;
  3071. padding-left: 0;
  3072. font-size: large;
  3073. height: 29px;
  3074. }
  3075. #main_grid h3 span.floatleft, #main_grid h3 span.floatright
  3076. {
  3077. display: block;
  3078. }
  3079. #main_grid table th.days
  3080. {
  3081. width: 14%;
  3082. }
  3083. #main_grid table td.weeks
  3084. {
  3085. vertical-align: middle;
  3086. text-align: center;
  3087. }
  3088. #main_grid table td.days
  3089. {
  3090. vertical-align: top;
  3091. }
  3092. a.modify_event
  3093. {
  3094. color: red;
  3095. }
  3096. span.hidelink
  3097. {
  3098. font-style: italic;
  3099. }
  3100. #calendar_navigation
  3101. {
  3102. text-align: center;
  3103. }
  3104. #calendar .buttonlist_bottom
  3105. {
  3106. border-bottom: 1px solid #adadad;
  3107. padding: 0 0 0 1ex;
  3108. margin: 0 0 1ex 0;
  3109. }
  3110. /* Styles for the memberlist section.
  3111. ------------------------------------------------- */
  3112. #mlist_search
  3113. {
  3114. margin: auto;
  3115. width: 400px;
  3116. }
  3117. /* Styles for the basic search section.
  3118. ------------------------------------------------- */
  3119. #simple_search p
  3120. {
  3121. padding: 0.5em;
  3122. }
  3123. #simple_search, #simple_search p, #advanced_search
  3124. {
  3125. text-align: center !important;
  3126. margin: 0;
  3127. }
  3128. #search_error
  3129. {
  3130. font-style: italic;
  3131. padding: 0.3em 1em;
  3132. }
  3133. #search_term_input
  3134. {
  3135. font-size: 115%;
  3136. margin: 0 0 1em;
  3137. }
  3138. /* Styles for the advanced search section.
  3139. ------------------------------------------------- */
  3140. #searchform fieldset
  3141. {
  3142. text-align: left;
  3143. padding: 0;
  3144. margin: 0;
  3145. border: none;
  3146. }
  3147. fieldset#advanced_search .roundframe
  3148. {
  3149. border-bottom: none !important;
  3150. }
  3151. #advanced_search dl#search_options
  3152. {
  3153. margin: 0 auto;
  3154. width: 600px;
  3155. padding-top: 1em;
  3156. overflow: hidden;
  3157. }
  3158. #advanced_search dt
  3159. {
  3160. clear: both;
  3161. float: left;
  3162. padding: 0.2em;
  3163. text-align: right;
  3164. width: 20%;
  3165. }
  3166. #advanced_search dd
  3167. {
  3168. width: 75%;
  3169. float: left;
  3170. padding: 0.2em;
  3171. margin: 0 0 0 0.5em;
  3172. text-align: left;
  3173. }
  3174. #searchform p.clear
  3175. {
  3176. clear: both;
  3177. }
  3178. /* Styles for the search results page.
  3179. ------------------------------------------------- */
  3180. .pagelinks
  3181. {
  3182. padding: 0.5em;
  3183. }
  3184. .topic_table td blockquote, .topic_table td .quoteheader
  3185. {
  3186. margin: 0.5em;
  3187. }
  3188. .search_results_posts
  3189. {
  3190. overflow: hidden;
  3191. }
  3192. .search_results_posts .inner
  3193. {
  3194. padding: 0.5em 1em;
  3195. overflow: hidden;
  3196. }
  3197. .search_results_posts .windowbg2
  3198. {
  3199. margin-top: 4px;
  3200. }
  3201. .search_results_posts .buttons
  3202. {
  3203. padding: 5px 1em 0 0;
  3204. }
  3205. /* Styles for the help section.
  3206. ------------------------------------------------- */
  3207. #helpmain
  3208. {
  3209. padding: 1em;
  3210. border: 1px solid #696969;
  3211. }
  3212. #helpmain p
  3213. {
  3214. margin: 0 0 1.5em 0;
  3215. line-height: 1.5em;
  3216. }
  3217. #helpmain ul
  3218. {
  3219. line-height: 1.5em;
  3220. }
  3221. /* Depreciated stuff from the old days.
  3222. ------------------------------------------------- */
  3223. /* This style will make sure all headers use the same padding throughout. */
  3224. .headerpadding
  3225. {
  3226. padding: 0.5em;
  3227. }
  3228. /* smaller padding used in paragraphs, sections etc */
  3229. .smallpadding
  3230. {
  3231. padding: 0.2em;
  3232. }
  3233. /* larger padding used in paragraphs, sections etc */
  3234. .largepadding
  3235. {
  3236. padding: 0.7em;
  3237. }
  3238. /* A small space to the next section. */
  3239. .marginbottom
  3240. {
  3241. margin-bottom: 1em;
  3242. }
  3243. /* On the top too. */
  3244. .margintop
  3245. {
  3246. margin-top: 1em !important;
  3247. }
  3248. /* remove bold/italic styles */
  3249. span.plainstyle
  3250. {
  3251. font-weight: normal;
  3252. font-style: normal;
  3253. }
  3254. /* float a list horizontally */
  3255. ul.horizlist
  3256. {
  3257. width: 100%;
  3258. }
  3259. ul.horizlist li
  3260. {
  3261. float: left;
  3262. padding: 0.2em 0.4em 0.2em 0.4em;
  3263. vertical-align: top;
  3264. }
  3265. /* make a inline-list */
  3266. ul.nolist li
  3267. {
  3268. display: inline;
  3269. }
  3270. /* Helping style to clear floated items. */
  3271. .clearfix:after
  3272. {
  3273. content: ".";
  3274. display: block;
  3275. height: 0;
  3276. clear: both;
  3277. visibility: hidden;
  3278. }
  3279. .clearfix
  3280. {
  3281. display: inline-block;
  3282. }
  3283. /* Hides from IE-mac. \*/
  3284. * html .clearfix
  3285. {
  3286. height: 1%;
  3287. }
  3288. .clearfix
  3289. {
  3290. display: block;
  3291. }
  3292. /* End hide from IE-mac. */
  3293. /* This is used for tables that have a grid/border background color (such as the topic listing.) */
  3294. .bordercolor
  3295. {
  3296. background-color: #adadad;
  3297. padding: 0;
  3298. }
  3299. /* This is used on tables that should just have a border around them. */
  3300. .tborder
  3301. {
  3302. padding: 1px;
  3303. border: 1px solid #696969;
  3304. background-color: #fff;
  3305. }
  3306. /* If some random peep decides to use a description class within a tborder (happened to me!) */
  3307. .tborder .description
  3308. {
  3309. margin-bottom: 0;
  3310. }
  3311. /* Styles for print media.
  3312. ------------------------------------------------------- */
  3313. @media print
  3314. {
  3315. #headerarea
  3316. {
  3317. display: none;
  3318. }
  3319. .tborder
  3320. {
  3321. border: none;
  3322. }
  3323. }