index.css 62 KB

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