index.css 55 KB

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