index.css 58 KB

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