123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537 |
- /* Styles for the general looks for the Core theme.
- ------------------------------------------------------- */
- /* Normal, standard links. */
- a:link, a:visited
- {
- color: #476c8e;
- text-decoration: none;
- }
- a:hover
- {
- text-decoration: underline;
- }
- /* Tables should show empty cells. */
- table
- {
- empty-cells: show;
- }
- /* Set a fontsize that will look the same in all browsers. */
- body
- {
- background: #e5e5e8;
- font: 95%/90% Verdana, Helvetica, sans-serif;
- margin: 0;
- padding: 12px 0 4px 0;
- }
- /* Help popups require a different styling of the body element. */
- body#help_popup
- {
- width: auto;
- padding: 1em;
- min-width: 0;
- }
- /* use dark grey for the text, leaving #000 for headers etc */
- body, td, th, tr
- {
- color: #444;
- }
- /* lets give all forms zero padding/margins */
- form
- {
- padding: 0;
- margin: 0;
- }
- /* We can style the different types of input buttons to be uniform throughout different browsers and their color themes.
- .button_submit - covers input[type=submit], input[type=button], button[type=submit] and button[type=button] in all browsers
- .button_reset - covers input[type=reset] and button[type=reset] throughout all browsers
- .input_check - covers input[type=checkbox] throughout all browsers
- .input_radio - covers input[type=radio] throughout all browsers
- .input_text - covers input[type=text] throughout all browsers
- .input_file - covers input[type=file] throughout all browsers
- */
- input, button, select, textarea
- {
- font: 90%/105% verdana, Helvetica, sans-serif;
- color: #000;
- }
- /* the new "button" */
- a.new_posts:hover
- {
- text-decoration: none;
- }
- span.new_posts
- {
- padding: 0 4px 1px 4px;
- background-color: #ff8300;
- color: #fff;
- font-size: .7em;
- font-weight: bold;
- }
- /* The font size of textareas should be just a little bit larger. */
- textarea
- {
- font: 100%/130% verdana, Helvetica, sans-serif;
- }
- /* All input elements that are checkboxes or radio buttons shouldn't have a border around them. */
- input.input_check, input.input_radio
- {
- border: none;
- background: none;
- }
- /* Standard horizontal rule.. ([hr], etc.) */
- hr, .hrcolor
- {
- height: 1px;
- border: 0;
- color: #666;
- background-color: #666;
- }
- /* By default set the color on these tags as #000. */
- h1, h2, h3, h4, h5, h6
- {
- color: #000;
- font-size: 1em;
- margin: 0;
- padding: 0;
- }
- .content fieldset
- {
- border: 2px groove #fff;
- padding: 1em;
- margin: 0 0 0.3em 0;
- }
- /* No image should have a border when linked. */
- a img
- {
- border: 0;
- }
- /* Define strong as bold, and em as italics */
- strong
- {
- font-weight: bold;
- }
- em
- {
- font-style: italic;
- }
- /* Alternative for u tag */
- .underline
- {
- text-decoration: underline;
- }
- /* Common classes for easy styling.
- ------------------------------------------------------- */
- .floatright
- {
- float: right;
- }
- .floatleft
- {
- float: left;
- }
- .flow_auto
- {
- overflow: auto;
- }
- .flow_hidden
- {
- overflow: hidden;
- }
- .clear
- {
- clear: both;
- }
- .clear_left
- {
- clear: left;
- }
- .clear_right
- {
- clear: right;
- }
- /* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
- .smalltext, tr.smalltext th
- {
- font-size: 0.85em;
- font-family: verdana, sans-serif;
- }
- .middletext
- {
- font-size: 0.9em;
- font-family: verdana, sans-serif;
- }
- .normaltext
- {
- font-size: 1em;
- line-height: 1.2em;
- }
- .largetext
- {
- font-size: 1.4em;
- }
- .centertext
- {
- margin: 0 auto;
- text-align: center;
- }
- .righttext
- {
- margin-left: auto;
- margin-right: 0;
- text-align: right;
- }
- .lefttext
- {
- margin-left: 0;
- margin-right: auto;
- text-align: left;
- }
- /* some common padding styles */
- .padding
- {
- padding: 0.7em;
- }
- .main_section, .lower_padding
- {
- padding-bottom: 0.5em;
- }
- /* a quick reset list class. */
- ul.reset, ul.reset li
- {
- padding: 0;
- margin: 0;
- list-style: none;
- }
- /* Some BBC related styles.
- ------------------------------------------------------- */
- /* A quote, perhaps from another post. */
- blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote
- {
- color: #000;
- border: 1px solid #000;
- margin: 1px;
- padding: 1px;
- font-size: x-small;
- line-height: 1.4em;
- overflow: auto;
- }
- /* Alterate block quote stylings */
- blockquote.bbc_standard_quote
- {
- background-color: #d7daec;
- }
- blockquote.bbc_alternate_quote
- {
- background-color: #e7eafc;
- }
- /* A code block - maybe even PHP ;). */
- code.bbc_code
- {
- display: block;
- font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
- font-size: x-small;
- background: #eef;
- border: 1px solid #000;
- line-height: 1.3em;
- padding: 1px;
- overflow: auto;
- white-space: nowrap;
- /* Show a scrollbar after about 24 lines. */
- max-height: 24em;
- }
- /* The "Quote:" and "Code:" header parts... */
- .codeheader, .quoteheader
- {
- color: #000;
- text-decoration: none;
- font-style: normal;
- font-weight: bold;
- font-size: x-small;
- line-height: 1.2em;
- padding: 0 0.3em;
- }
- /* For links to change the code stuff... */
- .codeoperation
- {
- font-weight: normal;
- }
- /* Styling for BBC tags */
- .bbc_size
- {
- line-height: 1.4em;
- }
- .bbc_color a
- {
- color: inherit;
- }
- .bbc_img
- {
- border: 0;
- }
- .bbc_table
- {
- font: inherit;
- color: inherit;
- }
- .bbc_table td
- {
- font: inherit;
- color: inherit;
- vertical-align: top;
- }
- .bbc_u
- {
- text-decoration: underline;
- }
- .bbc_tt
- {
- font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
- }
- /* Generally, those [?] icons. This makes your cursor a help icon. */
- .help
- {
- cursor: help;
- }
- /* /me uses this a lot. (emote, try typing /me in a post.) */
- .meaction
- {
- color: red;
- }
- /* Highlighted text - such as search results. */
- .highlight
- {
- background-color: #ff0;
- font-weight: bold;
- color: #000;
- }
- /* A more discreet highlight color, for selected membergroups etc. */
- .highlight2
- {
- background-color: #D1E1EF;
- color: #000;
- }
- /* Generic, mostly color-related, classes.
- ------------------------------------------------------- */
- .titlebg, .titlebg2, tr.titlebg td, tr.titlebg2 td
- {
- color: #000;
- font-family: Verdana, Helvetica, sans-serif;
- font-weight: bold;
- background: url(../images/titlebg.jpg) #E9F0F6 repeat-x;
- }
- .catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
- {
- color: #fff;
- font-family: Verdana, Helvetica, sans-serif;
- font-weight: bold;
- background: url(../images/catbg.jpg) #88A6C0 repeat-x;
- }
- .catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
- {
- background: url(../images/catbg2.jpg) #A1BFD9 repeat-x;
- }
- /* adjust the table versions of headers */
- tr.titlebg td, tr.titlebg2 td
- {
- padding: 6px;
- }
- tr.catbg td, tr.catbg2 td, td.catbg, td.catbg2, tr.catbg th, tr.catbg2 th, th.catbg, th.catbg2
- {
- padding: 6px;
- }
- tr.titlebg td a, tr.titlebg2 td a
- {
- color: #000;
- }
- tr.catbg td a, tr.catbg2 td a, .catbg a
- {
- color: #fff;
- }
- tr.catbg th.smalltext
- {
- font-size: 0.9em;
- }
- /* Alternating backgrounds for posts, and several other sections of the forum. */
- .windowbg, #preview_body, .content, .roundframe
- {
- color: #000;
- background-color: #ecedf3;
- }
- .windowbg2
- {
- color: #000;
- background-color: #f6f6f6;
- }
- .windowbg3
- {
- color: #000;
- background-color: #e0e1e8;
- }
- /* the page navigation area */
- .pagesection
- {
- font-size: 0.85em;
- padding: 0.5em 0.2em;
- overflow: hidden;
- }
- .pagesection .pagelinks
- {
- padding: 0.5em 0;
- }
- /* GenericList */
- table.table_grid thead tr.catbg th.smalltext
- {
- white-space: nowrap;
- }
- /* Color for background of posts requiring approval */
- .approvebg
- {
- color: #000;
- background-color: #f6e0d4;
- }
- /* Color for background of *topics* requiring approval */
- .approvetbg
- {
- color: #000;
- background-color: #e4a17c;
- }
- /* sticky posts have a different background */
- .stickybg
- {
- background: #e8d8cf;
- }
- .stickybg2
- {
- background: #f2e3d9;
- }
- /* locked posts too! */
- .lockedbg
- {
- background: #d4dce2;
- font-style: italic;
- }
- .lockedbg2
- {
- background: #d8e1e7;
- font-style: italic;
- }
- /* Posts and personal messages displayed throughout the forum. */
- .post, .personalmessage
- {
- width: 100%;
- overflow: auto;
- line-height: 1.4em;
- }
- /* All the signatures used in the forum. If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
- .signature
- {
- clear: right;
- padding: 1em 0 3px 0;
- width: 98%;
- border-top: 1px solid #666;
- line-height: 1.4em;
- font-size: 0.85em;
- }
- .custom_fields_above_signature
- {
- clear: right;
- padding: 1em 0 3px 0;
- width: 98%;
- border-top: 1px solid #666;
- line-height: 1.4em;
- font-size: 0.85em;
- }
- /* Sometimes there will be an error when you post */
- .error
- {
- color: red;
- }
- /* Messages that somehow need to attract the attention. */
- .alert
- {
- color: red;
- }
- /* Calendar colors for birthdays, events and holidays */
- .birthday
- {
- color: #920ac4;
- }
- .event
- {
- color: #078907;
- }
- .holiday
- {
- color: #000080;
- }
- /* Colors for warnings */
- .warn_mute
- {
- color: red;
- }
- .warn_moderate
- {
- color: #ffa500;
- }
- .warn_watch, .success
- {
- color: green;
- }
- a.moderation_link, a.moderation_link:visited
- {
- color: red;
- font-weight: bold;
- }
- .openid_login
- {
- background: white url(../images/openid.gif) no-repeat;
- padding-left: 18px;
- }
- /* a descriptive style */
- .description
- {
- padding: 1em;
- font-size: 0.9em;
- line-height: 1.5em;
- border: 1px solid #bbb;
- background: #f5f5f0;
- margin: 0 0 1em 0;
- }
- /* an informative style */
- .information
- {
- padding: 1em;
- font-size: 0.9em;
- line-height: 1.5em;
- border: 1px solid #bbb;
- background: #f0f6f0;
- margin: 0 0 1em 0;
- }
- .information p
- {
- padding: 1em;
- margin: 0;
- }
- /* AJAX notification bar
- ------------------------------------------------------- */
- #ajax_in_progress
- {
- background: #32cd32;
- color: #fff;
- text-align: center;
- font-weight: bold;
- font-size: 18pt;
- padding: 0.4em;
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- }
- #ajax_in_progress a
- {
- color: #fff;
- text-decoration: underline;
- font-size: smaller;
- float: right;
- }
- /* a general table class */
- table.table_grid
- {
- border-collapse: collapse;
- border: 1px solid #adadad;
- }
- table.table_grid td
- {
- padding: 3px;
- border: 1px solid #adadad;
- }
- /* Lists with settings use these a lot.
- ------------------------------------------------------- */
- dl.settings
- {
- clear: right;
- overflow: auto;
- margin: 0 0 10px 0;
- padding: 0;
- }
- dl.settings dt
- {
- width: 48%;
- float: left;
- margin: 0 0 10px 0;
- padding: 0;
- clear: both;
- }
- dl.settings dt.settings_title
- {
- width: 100%;
- float: none;
- margin: 0 0 10px 0;
- padding: 5px 0 0 0;
- font-weight: bold;
- clear: both;
- }
- dl.settings dt.windowbg
- {
- width: 98%;
- float: left;
- margin: 0 0 3px 0;
- padding: 0 0 5px 0;
- clear: both;
- }
- dl.settings dd
- {
- width: 48%;
- float: left;
- overflow: auto;
- margin: 0 0 3px 0;
- padding: 0;
- }
- dl.settings img
- {
- margin: 0 10px 0 0;
- }
- /* The main content area.
- ------------------------------------------------------- */
- .content, .roundframe
- {
- padding: 0.5em 1.2em;
- margin: 0;
- border: none;
- border: 1px solid #adadad;
- }
- .content p, .roundframe p
- {
- margin: 0 0 0.5em 0;
- }
- /* Styles used by the auto suggest control.
- ------------------------------------------------------- */
- .auto_suggest_div
- {
- border: 1px solid #000;
- position: absolute;
- visibility: hidden;
- }
- .auto_suggest_item
- {
- background-color: #ddd;
- }
- .auto_suggest_item_hover
- {
- background-color: #888;
- cursor: pointer;
- color: #eee;
- }
- /* Styles for the standard dropdown menus.
- ------------------------------------------------------- */
- /* Container for the new admin menu */
- #adm_container
- {
- float: left;
- margin-left: 10px;
- padding: 0 5px 0 5px;
- background: url(../images/admintab_left.gif) no-repeat;
- }
- ul.admin_menu, ul.admin_menu li ul
- {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- ul.admin_menu
- {
- background: url(../images/admintab_right.gif) top right no-repeat;
- }
- ul.admin_menu a
- {
- text-decoration: none;
- }
- /* First layer of menu items */
- ul.admin_menu li
- {
- position: relative;
- float: left;
- background: url(../images/admintab_back.gif) top right repeat-x;
- padding-right: 4px;
- }
- ul.admin_menu li.last
- {
- background: url(../images/admintab_right.gif) top right repeat-x;
- }
- ul.admin_menu li.chosen
- {
- background: url(../images/admintab_active_left.gif) no-repeat;
- padding: 0 0 0 6px;
- }
- ul.admin_menu li h4
- {
- margin: 0;
- padding: 7px 5px 3px 5px;
- cursor: pointer;
- font-weight: normal;
- font-size: x-small;
- text-transform: uppercase;
- color: #fff;
- }
- ul.admin_menu li.last.chosen h4
- {
- background: url(../images/admintab_active_last.gif) top right no-repeat;
- padding-right: 17px;
- }
- /* IE6 does't support multiple class selectors */
- ul.admin_menu li.last_chosen h4
- {
- background: url(../images/admintab_active_last.gif) top right no-repeat;
- padding-right: 17px;
- }
- ul.admin_menu li.chosen h4
- {
- background: url(../images/admintab_active_right.gif) top right no-repeat;
- padding-right: 10px;
- }
- /* Second layer of menu items */
- ul.admin_menu li ul
- {
- z-index: 90;
- display: none;
- position: absolute;
- /* IE6 needs a fixed width to prevent the menu from going haywire */
- width: 19em;
- border: 1px solid #808080;
- border-left: 2px solid #6888a7;
- background: #f8f8fb;
- }
- ul.admin_menu li.chosen ul
- {
- margin: 0 0 0 -6px;
- }
- ul.admin_menu li ul li
- {
- background: none;
- width: 19em;
- padding: 0;
- }
- ul.admin_menu li ul li a
- {
- display: block;
- padding: 0.5em 2em 0.5em 0.5em;
- font-size: 90%;
- text-decoration: none;
- background: none;
- color: #000 !important;
- }
- ul.admin_menu li ul li a.subsection
- {
- background: url(../images/admin/subsection.gif) no-repeat 98% 50%;
- }
- ul.admin_menu li ul li a.chosen
- {
- font-weight: bold;
- }
- ul.admin_menu li ul li a:hover
- {
- background-color: #c8e2fb;
- text-decoration: none;
- }
- ul.admin_menu li:hover ul, ul.admin_menu li.over ul
- {
- display: block;
- }
- /* Third layer of menu items */
- ul.admin_menu li ul li ul, ul.admin_menu li ul li.over ul
- {
- display: none;
- position: absolute;
- top: -999em;
- border: 1px solid #a0a0a0;
- border-left: 2px solid #6888a7;
- background: #fff;
- }
- ul.admin_menu li ul li:hover ul, ul.admin_menu li ul li.over ul
- {
- display: block;
- left: 18em;
- top: auto;
- margin: -2em 0 0 1em;
- }
- #adm_submenus
- {
- padding: 0 0 0 2em;
- }
- #adm_submenus, #adm_submenus ul
- {
- height: 3em;
- overflow: auto;
- }
- /* The dropdown menu toggle image */
- div#menu_toggle
- {
- float: right;
- margin: 0 10px 0 0;
- background: url(../images/mirrortab_first.gif) top left no-repeat;
- padding: 0 0 0 7px;
- }
- div#menu_toggle a
- {
- display: block;
- background: #e5e5e8 url(../images/mirrortab_last.gif) top right no-repeat;
- padding: 8px 12px 3px 6px;
- }
- /* Styles for the standard button lists.
- ------------------------------------------------------- */
- .buttonlist ul
- {
- background: url(../images/maintab_first.gif) no-repeat scroll left bottom;
- padding: 0 0 0 10px;
- }
- .buttonlist ul li, .buttonlist_bottom ul li
- {
- display: inline;
- }
- .buttonlist ul li a, .buttonlist_bottom ul li a
- {
- float: left;
- display: block;
- color: #fff;
- font-size: 0.8em;
- font-family: tahoma, sans-serif;
- text-transform: uppercase;
- text-decoration: none;
- }
- .buttonlist ul li a:hover, .buttonlist_bottom ul li a:hover
- {
- color: #e0e0ff;
- }
- .buttonlist ul li a span
- {
- background: url(../images/maintab_back.gif) repeat-x bottom left;
- display: block;
- padding: 0.1em 0.5em 0.5em 0.5em;
- }
- .buttonlist ul li.last a span
- {
- background: url(../images/maintab_last.gif) no-repeat bottom right;
- padding: 0.1em 1em 0.5em 0.5em;
- }
- .buttonlist ul li.active a span em
- {
- padding: 0.1em 0.5em 0.5em 0.5em;
- display: block;
- font-style: normal;
- background: url(../images/maintab_active_back.gif) repeat-x bottom right;
- }
- .buttonlist ul li.active a span
- {
- background: url(../images/maintab_active_first.gif) no-repeat bottom left;
- padding: 0 0 0 8px;
- }
- .buttonlist ul li.lastactive
- {
- float: left;
- background: url(../images/maintab_last.gif) no-repeat bottom right;
- padding: 0 8px 0 0;
- }
- .buttonlist ul li.active a
- {
- background: url(../images/maintab_active_last.gif) no-repeat bottom right;
- padding-right: 8px;
- }
- /* For links that are basically submit buttons. */
- .buttonlist_submit
- {
- background: transparent;
- color: #fff;
- text-transform: uppercase;
- vertical-align: top;
- text-decoration: none;
- font-size: 9px;
- font-family: tahoma, sans-serif;
- border: 0;
- }
- .buttonlist_submit:hover
- {
- color: #e0e0ff;
- }
- /* ..for the "bottom" menu */
- .buttonlist_bottom ul
- {
- background: url(../images/mirrortab_first.gif) no-repeat scroll left top;
- padding: 0 0 0 10px;
- }
- .buttonlist_bottom ul li a span
- {
- background: url(../images/mirrortab_back.gif) repeat-x top left;
- display: block;
- padding: 0.4em 0.5em 0.2em 0.5em;
- }
- .buttonlist_bottom ul li.last a span
- {
- background: url(../images/mirrortab_last.gif) no-repeat top right;
- padding: 0.4em 1em 0.2em 0.5em;
- }
- .buttonlist_bottom ul li.active a span em
- {
- padding: 0.4em 0.5em 0.2em 0.5em;
- display: block;
- font-style: normal;
- background: url(../images/mirrortab_active_back.gif) repeat-x top right;
- }
- .buttonlist_bottom ul li.active a span
- {
- background: url(../images/mirrortab_active_first.gif) no-repeat top left;
- padding: 0 0 0 8px;
- }
- .buttonlist_bottom ul li.lastactive
- {
- float: left;
- background: url(../images/mirrortab_last.gif) no-repeat top right;
- padding: 0 8px 0 0;
- }
- .buttonlist_bottom ul li.active a
- {
- background: url(../images/mirrortab_active_last.gif) no-repeat top right;
- padding-right: 8px;
- }
- /* The old-style button strips, with images */
- .oldbuttonlist
- {
- text-align: right;
- padding: 0.5em;
- }
- /* a smaller quick-button list */
- ul.quickbuttons
- {
- margin: 0.9em 11px 0 0;
- clear: right;
- float: right;
- text-align: right;
- }
- ul.quickbuttons li
- {
- float: left;
- display: inline;
- margin: 0 0 0 11px;
- }
- ul.quickbuttons li a
- {
- padding: 0 0 0.7em 20px;
- display: block;
- height: 20px;
- font: bold 0.85em/18px arial, sans-serif;
- float: left;
- }
- ul.quickbuttons li.quote_button
- {
- background: url(../images/buttons/quote.gif) no-repeat 0 0;
- }
- ul.quickbuttons li.remove_button
- {
- background: url(../images/buttons/delete.gif) no-repeat 0 0;
- }
- ul.quickbuttons li.modify_button
- {
- background: url(../images/buttons/modify.gif) no-repeat 0 0;
- }
- ul.quickbuttons li.approve_button
- {
- background: url(../images/buttons/approve.gif) no-repeat 0 0;
- }
- ul.quickbuttons li.restore_button
- {
- background: url(../images/buttons/restore_topic.gif) no-repeat 0 0;
- }
- ul.quickbuttons li.split_button
- {
- background: url(../images/buttons/split.gif) no-repeat 0 0;
- }
- ul.quickbuttons li.reply_button
- {
- background: url(../images/buttons/reply.gif) no-repeat 0 0;
- }
- ul.quickbuttons li.reply_all_button
- {
- background: url(../images/buttons/reply.gif) no-repeat 0 0;
- }
- ul.quickbuttons li.notify_button
- {
- background: url(../images/buttons/notify_sm.gif) no-repeat 0 0;
- }
- ul.quickbuttons li.inline_mod_check
- {
- margin: 0 0 0 5px;
- }
- .generic_tab_strip
- {
- margin: 0 1em 2em;
- }
- .generic_tab_strip .buttonlist
- {
- float: left !important;
- }
- /* the navigation list */
- ul#navigation
- {
- margin: 0;
- font-size: 0.9em;
- padding: 1em 0.4em;
- }
- ul#navigation li
- {
- float: none;
- font-size: 0.95em;
- display: inline;
- }
- /* Styles for the general looks for the Core theme.
- ------------------------------------------------------- */
- /* this is the main container surrounding everything, use this to set forum width, font-size etc. */
- #mainframe
- {
- font-size: 85%;
- width: 95%;
- margin: auto;
- }
- /* the forum name or logo */
- h1#forum_name
- {
- padding: 0.6em 0 0.6em 0;
- margin: 0;
- font-family: Verdana, helvetica, sans-serif;
- font-size: 135%;
- color: #fff;
- }
- /* The greeting section */
- #greeting_section
- {
- padding: 0.7em 0.4em 0.7em 0.4em;
- clear: both;
- }
- #greeting_section li
- {
- font-weight: normal;
- }
- #greeting_section li#name
- {
- padding-left: 0.5em;
- }
- #greeting_section li em
- {
- font-style: normal;
- font-weight: bold;
- }
- /* user section with all relevant links */
- #user_section
- {
- padding: 1px;
- margin: 1px 0 0 0;
- font-size: 90%;
- }
- #user_section ul, #user_section form
- {
- padding: 0.5em 0.7em 0.5em 0.7em;
- }
- /* the avatar, located to the left */
- #user_section #myavatar
- {
- padding: 0.7em;
- border-right: 1px solid #adadad;
- margin: 0 0.5em 0 0;
- float: left;
- }
- /* the news and search areas */
- #news_section
- {
- clear: both;
- font-size: 0.8em;
- padding: 0.5em 1em 0.5em 1em;
- }
- #random_news h3
- {
- margin-right: 1em;
- font-size: 0.85em;
- display: inline;
- }
- #random_news p
- {
- margin: 0;
- padding: 0;
- display: inline;
- }
- /* The main menu. */
- .main_menu
- {
- padding-left: 1em;
- }
- .main_menu ul
- {
- list-style: none;
- padding: 0;
- margin: 0;
- background: url(../images/maintab_first.gif) no-repeat bottom left;
- padding-left: 10px;
- }
- .main_menu li
- {
- margin: 0;
- padding: 0;
- display: inline;
- }
- .main_menu li a:link, .main_menu li a:visited
- {
- float: left;
- display: block;
- color: #fff;
- font-size: 0.8em;
- font-family: tahoma, sans-serif;
- text-transform: uppercase;
- }
- .main_menu li a:hover
- {
- color: #e0e0ff;
- text-decoration: none;
- }
- .main_menu li a span
- {
- background: url(../images/maintab_back.gif) repeat-x bottom left;
- display: block;
- padding: 0.1em 0.5em 0.5em 0.5em;
- }
- .main_menu li.last a span
- {
- background: url(../images/maintab_last.gif) no-repeat bottom right;
- padding: 0.1em 1em 0.5em 0.5em;
- }
- .main_menu li.active a span em
- {
- padding: 0.1em 0.5em 0.5em 0.5em;
- display: block;
- font-style: normal;
- background: url(../images/maintab_active_back.gif) repeat-x bottom right;
- }
- .main_menu li.active a span
- {
- background: url(../images/maintab_active_first.gif) no-repeat bottom left;
- padding: 0 0 0 8px;
- }
- .main_menu li.last.active
- {
- float: left;
- background: url(../images/maintab_last.gif) no-repeat bottom right;
- padding: 0 8px 0 0;
- }
- /* IE6 doesn't support multiple class selectors */
- .main_menu li.lastactive
- {
- float: left;
- padding: 0 8px 0 0;
- background: url(../images/maintab_last.gif) no-repeat bottom right;
- }
- .main_menu li.active a
- {
- background: url(../images/maintab_active_last.gif) no-repeat bottom right;
- padding-right: 8px;
- }
- /* the linktree */
- ul.linktree
- {
- clear: both;
- width: 100%;
- list-style: none;
- margin: 0;
- padding: 1.5em 0.5em 0.5em 0.5em;
- overflow: hidden;
- }
- ul.linktree li
- {
- float: left;
- padding: 0 0.5em 0 0;
- font-size: 0.8em;
- }
- ul.linktree li a
- {
- color: #000;
- }
- ul.linktree li a:hover
- {
- color: #cc3333;
- }
- ul.linktree li span
- {
- font-weight: bold;
- }
- /* the footer area */
- #footerarea
- {
- padding: 1em 0 2em 0;
- text-align: center;
- }
- #footerarea ul
- {
- margin: 0 auto 0 auto;
- }
- #footerarea ul li
- {
- text-align: center;
- display: inline;
- border-right: 1px solid #888;
- margin: 0;
- padding: 0 4px 0 2px;
- }
- /* Note: It is against the license to remove, alter or otherwise hide the copyright output from SMF so please do not alter the two sections below. */
- #footerarea ul li.copyright
- {
- display: block;
- line-height: 0;
- font-size: small;
- padding: 1em;
- }
- #footerarea ul li.copyright, #footerarea ul li.last
- {
- border-right: none;
- }
- /* page created in.. */
- #footerarea p
- {
- clear: both;
- text-align: left;
- padding-left: 0.5em;
- }
- p#show_loadtime
- {
- display: block;
- text-align: center;
- }
- /* the upshrink buttons */
- #upshrink, #advsearch
- {
- margin: 0 1ex;
- }
- /* Styles for a typical table.
- ------------------------------------------------------- */
- table.table_list
- {
- width: 100%;
- }
- table.table_list p
- {
- padding: 0;
- margin: 0;
- }
- table.table_list td,table.table_list th
- {
- padding: 5px;
- }
- table.table_list tbody.header td
- {
- padding: 0;
- }
- table.table_list tbody.content td.stats
- {
- font-size: 90%;
- width: 15%;
- text-align: center;
- }
- table.table_list tbody.content td.lastpost
- {
- line-height: 1.2em;
- font-size: 85%;
- width: 24%;
- }
- table.table_list tbody.content td.icon
- {
- text-align: center;
- width: 6%;
- }
- /* Styles for headers.
- ------------------------------------------------------- */
- /* Styles for headers used in Curve templates. */
- h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg, div.titlebg, .table_list tbody.header td
- {
- overflow: hidden;
- line-height: 2em;
- font-weight: bold;
- }
- h3.titlebg, h4.titlebg
- {
- border-left: 1px solid #adadad;
- border-right: 1px solid #adadad;
- }
- h3.titlebg, h4.catbg
- {
- padding: 0 0.5em !important;
- }
- h3.catbg img.icon, div.titlebg img.icon, h3.catbg img
- {
- float: left;
- margin: 5px 8px 0 0;
- }
- /* These are used primarily for titles, but also for headers (the row that says what everything in the table is.) */
- .titlebg, tr.titlebg th, tr.titlebg td, .titlebg2, tr.titlebg2 th, tr.titlebg2 td
- {
- color: #000;
- font-style: normal;
- background: url(../images/titlebg.jpg) #E9F0F6 repeat-x;
- border-bottom: 1px solid #9baebf;
- border-top: 1px solid #fff;
- padding-left: 10px;
- padding-right: 10px;
- }
- .titlebg, .titlebg a:link, .titlebg a:visited
- {
- font-weight: bold;
- color: #000;
- font-style: normal;
- }
- .titlebg a:hover
- {
- color: #404040;
- }
- /* same as titlebg, but used where bold text is not needed */
- .titlebg2 a:link, .titlebg2 a:visited
- {
- color: #000;
- font-style: normal;
- text-decoration: underline;
- }
- .titlebg2 a:hover
- {
- text-decoration: underline;
- }
- /* This is used for categories, page indexes, and several other areas in the forum.
- .catbg and .catbg2 is for boardindex, while .catbg3 is for messageindex and display headers. */
- .catbg, tr.catbg td, .catbg3, tr.catbg3 td
- {
- background: url(../images/catbg.jpg) #88A6C0 repeat-x;
- color: #fff;
- padding-left: 10px;
- padding-right: 10px;
- }
- .catbg2, tr.catbg2 td
- {
- background: url(../images/catbg2.jpg) #A1BFD9 repeat-x;
- color: #fff;
- padding-left: 10px;
- padding-right: 10px;
- }
- .catbg, .catbg2, .catbg3
- {
- border-bottom: 1px solid #375576;
- }
- .catbg, .catbg2
- {
- font-weight: bold;
- }
- .catbg3, tr.catbg3 td, .catbg3 a:link, .catbg3 a:visited
- {
- font-size: 95%;
- color: #fff;
- text-decoration: none;
- }
- .catbg a:link, .catbg a:visited, .catbg2 a:link, .catbg2 a:visited
- {
- color: #fff;
- text-decoration: none;
- }
- .catbg a:hover, .catbg2 a:hover, .catbg3 a:hover
- {
- color: #e0e0ff;
- }
- /* Styles for the board index.
- ------------------------------------------------- */
- p#stats
- {
- text-align: right;
- }
- h3#newsfader
- {
- font-size: 1em;
- }
- #smfNewsFader
- {
- font-weight: bold;
- line-height: 1.4em;
- padding: 1em;
- font-size: 1em;
- text-align: center;
- }
- #upshrink_ic
- {
- margin-right: 2ex;
- text-align: right;
- }
- .categoryframe
- {
- margin-top: 0.4em;
- }
- .categoryframe h3
- {
- margin: 0;
- }
- table.boardsframe
- {
- width: 100%;
- }
- table.boardsframe td.icon
- {
- text-align: center;
- padding: 0.5em;
- width: 6%;
- }
- table.boardsframe td.info
- {
- width: 60%;
- padding: 0;
- }
- table.boardsframe td.info h4
- {
- padding: 0.4em 0.4em 0 0.4em;
- margin: 0;
- }
- table.boardsframe td.info p
- {
- padding: 0 0.4em 0.5em 0.4em;
- margin: 0;
- }
- table.boardsframe td.info p.moderators
- {
- font-size: 0.8em;
- font-family: verdana, sans-serif;
- }
- table.boardsframe td.stats
- {
- width: 8%;
- vertical-align: middle;
- text-align: center;
- }
- table.boardsframe td.lastpost
- {
- width: 20%;
- vertical-align: top;
- padding: 0.5em;
- }
- #posticons
- {
- clear: both;
- width: 100%;
- }
- #posticons .buttonlist
- {
- margin-right: 1em;
- float: right;
- }
- /* the newsfader */
- #smfFadeScroller
- {
- text-align: center;
- overflow: auto;
- color: #000000; /* shouldn't be shorthand style due to JS bug in IE! */
- }
- /* Styles for the info center on the board index.
- ---------------------------------------------------- */
- #infocenterframe
- {
- margin-top: 2em;
- clear: both;
- }
- /* each section in infocenter has this class */
- .infocenter_section
- {
- clear: both;
- }
- .infocenter_section p.section
- {
- display: block;
- margin: 0;
- width: 30px;
- text-align: center;
- float: left;
- padding: 0.5em 0 0 0;
- }
- .infocenter_section div.sectionbody
- {
- margin-left: 30px;
- padding: 0.3em;
- border-left: 1px solid #a0a0a0;
- min-height: 25px;
- height: auto !important;
- }
- /* recent posts - or just one recent post */
- dl#infocenter_recentposts
- {
- float: left;
- width: 100%;
- padding: 0;
- margin: 0;
- }
- dl#infocenter_recentposts dt
- {
- clear: left;
- float: left;
- padding: 0.1em;
- width: 68%;
- white-space: nowrap;
- overflow: hidden;
- }
- dl#infocenter_recentposts dd
- {
- clear: right;
- float: right;
- padding: 0.1em;
- width: 25%;
- text-align: right;
- white-space: nowrap;
- overflow: hidden;
- }
- /* login form */
- form#infocenter_login ul.horizlist label
- {
- white-space: nowrap;
- font-size: 90%;
- font-weight: bold;
- }
- /* Styles for the message (topic) index.
- ---------------------------------------------------- */
- #childboards table
- {
- width: 100%;
- }
- .modbuttons
- {
- clear: both;
- width: 100%;
- }
- .buttonlist, .buttonlist_bottom
- {
- margin-right: 1em;
- float: right;
- }
- #messageindex td.icon1, #messageindex td.icon2
- {
- text-align: center;
- padding: 0.5em;
- width: 5%;
- }
- #messageindex td.subject
- {
- padding: 0.5em;
- }
- #messageindex td.starter
- {
- text-align: center;
- padding: 0.5em;
- width: 14%;
- }
- #messageindex td.replies
- {
- text-align: center;
- padding: 0.5em;
- width: 4%;
- }
- #messageindex td.views
- {
- text-align: center;
- padding: 0.5em;
- width: 4%;
- }
- #messageindex td.lastpost
- {
- padding: 0.5em;
- width: 22%;
- }
- #messageindex td.moderation
- {
- text-align: center;
- padding: 0.5em;
- width: 4%;
- }
- #topic_icons p
- {
- display: block;
- padding: 0.5em 0.5em 0.1em 0.5em;
- margin: 0;
- border-bottom: none;
- font-weight: normal !important;
- }
- #topic_icons ul
- {
- display: block;
- padding: 0.5em 1em 0.1em 1em;
- margin: 0;
- border-bottom: none;
- font-weight: normal !important;
- }
- #message_index_jump_to
- {
- margin: 2em 4em 0 2em;
- }
- .lastpost img
- {
- float: right;
- }
- /* Styles for the display template (topic view).
- ---------------------------------------------------- */
- .linked_events
- {
- clear: both;
- margin: 1em 0;
- }
- .linked_events .edit_event
- {
- color: #f00;
- }
- #moderationbuttons
- {
- margin-left: 0.5em;
- }
- #postbuttons .nav, #postbuttons_lower .nav
- {
- margin: 0.5em 0.5em 0 0;
- text-align: right;
- }
- #postbuttons_lower .nav
- {
- margin: 0 0.5em 0.5em 0;
- }
- #postbuttons, #postbuttons_lower
- {
- text-align: right;
- }
- /* Poll question */
- h4#pollquestion
- {
- padding: 1em 0 1em 2em;
- }
- /* Poll vote options */
- #poll_options ul.options
- {
- border-top: 1px solid #696969;
- padding: 1em 2.5em 0 2em;
- margin: 0 0 1em 0;
- }
- #poll_options div.submitbutton
- {
- clear: both;
- padding: 0 0 1em 2em;
- }
- #poll_options div.submitbutton.border
- {
- border-bottom: 1px solid #696969;
- margin: 0 0 1em 0;
- }
- /* Poll results */
- #poll_options dl.options
- {
- border: solid #696969;
- border-width: 1px 0;
- padding: 1em 2.5em 0 2em;
- margin: 0 0 1em 0;
- }
- #poll_options dl.options dt.voted
- {
- font-weight: bold;
- }
- #poll_options dl.options dd
- {
- margin: 0.5em 0 1em 0;
- }
- /* Poll notices */
- #poll_options p
- {
- margin: 0 1.5em 0.2em 1.5em;
- padding: 0 0.5em 0.5em 0.5em;
- }
- div#pollmoderation
- {
- margin: -1em 0 0 2em;
- padding: 0;
- }
- .approve_post
- {
- margin: 2ex;
- padding: 1ex;
- border: 2px dashed #cc3344;
- color: #000;
- font-weight: bold;
- }
- #forumposts h3.catbg3
- {
- font-weight: normal;
- padding: 0.4em;
- overflow: hidden;
- }
- #forumposts h3.catbg3 img
- {
- float: left;
- vertical-align: middle;
- }
- #forumposts h3.catbg3 span
- {
- float: left;
- padding-left: 2%;
- }
- #forumposts h3.catbg3 span#top_subject
- {
- padding-left: 9.5em;
- }
- .poster
- {
- width: 15em;
- float: left;
- }
- .post
- {
- clear: right;
- }
- img.smiley
- {
- vertical-align: bottom;
- }
- .postarea
- {
- margin-left: 16em;
- }
- .messageicon
- {
- float: left;
- margin: 0 0.5em 0.5em 0;
- }
- .messageicon img
- {
- padding: 6px 3px;
- }
- .keyinfo
- {
- float: left;
- clear: none;
- width: 50%;
- min-height: 3em;
- }
- ul.postingbuttons
- {
- float: right;
- padding: 0 0.5em 0 0;
- }
- ul.postingbuttons li
- {
- float: left;
- margin: 0 0.5em 0 0;
- }
- .modifybutton
- {
- float: right;
- margin: 0 0.5em 0.5em 0;
- font: bold 0.85em arial, sans-serif;
- color: #476c8e;
- }
- .attachments
- {
- padding-top: 1em;
- overflow: auto;
- }
- .attachments hr
- {
- clear: both;
- margin: 1em 0 1em 0;
- }
- .postfooter
- {
- margin-left: 16em;
- }
- .topborder
- {
- border-top: 1px solid #bbb;
- }
- .moderatorbar
- {
- clear: right;
- margin: 1em 0 0 16em;
- }
- #pollmoderation, #moderationbuttons_strip
- {
- float: left;
- }
- /* Styles for the quick reply area.
- ---------------------------------------------------- */
- #quickReplyOptions #quickReplyWarning
- {
- border: none;
- text-align: left;
- margin: 0;
- width: 25%;
- float: left;
- }
- #quickReplyOptions #quickReplyContent
- {
- text-align: right;
- float: left;
- width: 67.5%;
- padding: 1em;
- border-left: 1px solid #aaa;
- }
- #quickReplyOptions #quickReplyContent textarea, #quickReplyOptions #quickReplyContent input
- {
- margin-bottom: .5em;
- }
- #quickReplyWarning
- {
- width: 20%;
- float: left;
- padding: 0.5em 1em;
- }
- #quickReplyContent
- {
- width: 75%;
- float: right;
- padding: 0.5em 0;
- }
- #quickReplyOptions .roundframe
- {
- overflow: hidden;
- }
- #quickReplyOptions form textarea
- {
- height: 100px;
- width: 635px;
- max-width: 100%;
- min-width: 100%;
- }
- /* The jump to box */
- #display_jump_to
- {
- clear: both;
- padding: 5px;
- }
- /* Separator of posts. More useful in the print stylesheet. */
- #forumposts .post_separator
- {
- display: none;
- }
- /* Styles for edit post section
- ---------------------------------------------------- */
- form#postmodify .roundframe
- {
- padding: 0 12%;
- }
- #post_header
- {
- margin-bottom: 0.5em;
- padding: 0.5em;
- overflow: hidden;
- }
- #post_header dt
- {
- float: left;
- margin: 0;
- padding: 0;
- width: 15%;
- margin: .3em 0;
- font-weight: bold;
- }
- #post_header dd
- {
- float: left;
- margin: 0;
- padding: 0;
- width: 83%;
- margin: .3em 0;
- }
- #post_header img
- {
- vertical-align: middle;
- }
- ul.post_options
- {
- margin: 0 0 0 1em;
- padding: 0;
- list-style: none;
- overflow: hidden;
- }
- ul.post_options li
- {
- margin: 0.2em 0;
- width: 49%;
- float: left;
- }
- #postAdditionalOptionsHeader
- {
- margin-top: 1em;
- }
- #postMoreOptions
- {
- border-bottom: 1px solid #666;
- padding: 0.5em;
- }
- #postAttachment, #postAttachment2
- {
- overflow: hidden;
- margin: .5em 0;
- padding: 0;
- border-bottom: 1px solid #666;
- padding: 0.5em;
- }
- #postAttachment dd, #postAttachment2 dd
- {
- margin: .3em 0 .3em 1em;
- }
- #postAttachment dt, #postAttachment2 dt
- {
- font-weight: bold;
- }
- #postAttachment3
- {
- margin-left: 1em;
- }
- #post_confirm_strip, #shortcuts
- {
- padding: 1em 0 0 0;
- }
- .post_verification
- {
- margin-top: .5em;
- }
- .post_verification #verification_control
- {
- margin: .3em 0 .3em 1em;
- }
- /* The BBC buttons */
- #bbcBox_message
- {
- margin: 1em 0 0.5em 0;
- }
- #bbcBox_message div
- {
- margin: 0.2em 0;
- vertical-align: top;
- }
- #bbcBox_message div img
- {
- margin: 0 1px 0 0;
- vertical-align: top;
- }
- #bbcBox_message select
- {
- margin: 0 2px;
- }
- /* The smiley strip */
- #smileyBox_message
- {
- margin: 0.75em 0 0.5em 0;
- }
- /* Styles for edit event section
- ---------------------------------------------------- */
- #post_event .roundframe
- {
- padding: 1% 12%;
- }
- #post_event fieldset
- {
- margin-bottom: 0.5em;
- border: 1px solid #c4c4c4;
- padding: 0.5em;
- clear: both;
- }
- #post_event legend
- {
- font-weight: bold;
- color: #000;
- }
- #post_event #event_main input
- {
- margin: 0 0 1em 0;
- float: left;
- }
- #post_event #event_main div.smalltext
- {
- width: 33em;
- float: right;
- }
- #post_event div.event_options
- {
- float: right;
- }
- #post_event ul.event_main, ul.event_options
- {
- padding: 0;
- overflow: hidden;
- }
- #post_event ul.event_main li
- {
- list-style-type: none;
- margin: 0.2em 0;
- width: 49%;
- float: left;
- }
- #post_event ul.event_options
- {
- margin: 0;
- padding: 0 0 .7em .7em;
- }
- #post_event ul.event_options li
- {
- list-style-type: none;
- margin: 0;
- float: left;
- }
- #post_event #event_main select, #post_event ul.event_options li select, #post_event ul.event_options li .input_check
- {
- margin: 0 1em 0 0;
- }
- /* Styles for edit poll section.
- ---------------------------------------------------- */
- #edit_poll
- {
- overflow: hidden;
- }
- #edit_poll fieldset
- {
- margin: 0.5em 0;
- border: 1px solid #c4c4c4;
- padding: 0.5em;
- clear: both;
- overflow: hidden;
- }
- #edit_poll legend
- {
- font-weight: bold;
- color: #000;
- }
- #edit_poll fieldset input
- {
- margin-left: 8.6em;
- }
- #edit_poll ul.poll_main li
- {
- padding-left: 1em;
- }
- #edit_poll ul.poll_main input
- {
- margin-left: 1em;
- }
- #edit_poll ul.poll_main, dl.poll_options
- {
- overflow: hidden;
- padding: 0 0 .7em .7em;
- list-style: none;
- }
- #edit_poll ul.poll_main li
- {
- margin: 0.2em 0;
- }
- #edit_poll dl.poll_options dt
- {
- width: 33%;
- padding: 0 0 0 1em;
- }
- #edit_poll dl.poll_options dd
- {
- width: 65%;
- }
- #edit_poll dl.poll_options dd input
- {
- margin-left: 0;
- }
- /* Styles for the recent messages section.
- ---------------------------------------------------- */
- .readbuttons
- {
- clear: both;
- width: 100%;
- }
- .buttonlist, .buttonlist_bottom
- {
- margin-right: 1em;
- float: right;
- }
- /* Styles for the move topic section.
- ---------------------------------------------------- */
- #move_topic dl
- {
- margin-bottom: 0;
- }
- .move_topic
- {
- width: 710px;
- margin: auto;
- text-align: left;
- }
- div.move_topic fieldset
- {
- margin: 0.5em 0;
- border: 1px solid #cacdd3;
- padding: 0.5em;
- }
- /* Styles for the send topic section.
- ---------------------------------------------------- */
- fieldset.send_topic
- {
- margin-bottom: 0.5em;
- border: none;
- padding: 0.5em;
- }
- dl.send_topic
- {
- margin-bottom: 0;
- }
- dl.send_mail dt
- {
- width: 35%;
- }
- dl.send_mail dd
- {
- width: 64%;
- }
- /* Styles for the split topic section.
- ---------------------------------------------------- */
- div#selected, div#not_selected
- {
- width: 49%;
- }
- ul.split_messages li.windowbg, ul.split_messages li.windowbg2
- {
- border: 1px solid #adadad;
- padding: 1em;
- margin: 1px;
- }
- ul.split_messages li a.split_icon
- {
- padding: 0 0.5em;
- }
- ul.split_messages div.post
- {
- padding: 1em 0 0 0;
- border-top: 1px solid #fff;
- }
- /* Styles for the report topic section.
- ---------------------------------------------------- */
- #report_topic dl
- {
- margin-bottom: 0;
- }
- #report_topic dl.settings dt
- {
- width: 20%;
- }
- #report_topic dl.settings dd
- {
- width: 79%;
- }
- /* Styles for the merge topic section.
- ---------------------------------------------------- */
- ul.merge_topics li
- {
- list-style-type: none;
- }
- dl.merge_topic dt
- {
- width: 25%;
- }
- dl.merge_topic dd
- {
- width: 74%;
- }
- fieldset.merge_options
- {
- margin-bottom: 0.5em;
- }
- fieldset.merge_options legend
- {
- font-weight: bold;
- }
- .custom_subject
- {
- margin: 0.5em 0;
- }
- /* Styles for the login areas.
- ------------------------------------------------------- */
- .login
- {
- width: 540px;
- margin: 0 auto;
- }
- .login dl
- {
- overflow: auto;
- clear: right;
- }
- .login dt, .login dd
- {
- margin: 0 0 0.4em 0;
- width: 44%;
- padding: 0.1em;
- }
- .login dt
- {
- float: left;
- clear: both;
- text-align: right;
- font-weight: bold;
- }
- .login dd
- {
- width: 54%;
- float: right;
- text-align: left;
- }
- .login p
- {
- text-align: center;
- }
- .login h3 img
- {
- float: left;
- margin: 4px 0.5em 0 0;
- }
- /* Styles for the registration section.
- ------------------------------------------------------- */
- .register_error
- {
- border: 1px dashed red;
- padding: 5px;
- margin: 0 1ex 1ex 1ex;
- }
- .register_error span
- {
- text-decoration: underline;
- }
- /* Additional profile fields */
- dl.register_form
- {
- margin: 0;
- clear: right;
- overflow: auto;
- }
- dl.register_form dt
- {
- font-weight: normal;
- float: left;
- clear: both;
- width: 50%;
- margin: 0.5em 0 0 0;
- }
- dl.register_form dt strong
- {
- font-weight: bold;
- }
- dl.register_form dt span
- {
- display: block;
- }
- dl.register_form dd
- {
- float: left;
- width: 49%;
- margin: 0.5em 0 0 0;
- }
- #confirm_buttons
- {
- text-align: center;
- padding: 1em 0;
- }
- .coppa_contact
- {
- padding: 4px;
- width: 32ex;
- background-color: #fff;
- color: #000;
- margin-left: 5ex;
- border: 1px solid #000;
- }
- .valid_input
- {
- background-color: #f5fff0;
- }
- .invalid_input
- {
- background-color: #fff0f0;
- }
- /* Styles for maintenance mode.
- ------------------------------------------------------- */
- #maintenance_mode
- {
- width: 75%;
- min-width: 520px;
- text-align: left;
- }
- #maintenance_mode img.floatleft
- {
- margin-right: 1em;
- }
- /* common for all admin sections */
- h3.titlebg img
- {
- vertical-align: middle;
- margin-right: 0.5em;
- }
- tr.titlebg td
- {
- padding-left: 0.7em;
- }
- #admin_menu
- {
- min-height: 2em;
- padding-left: 0;
- }
- #admin_content
- {
- clear: left;
- }
- #admin_login .centertext
- {
- padding: 1em;
- }
- #admin_login .centertext .error
- {
- padding: 0 0 1em 0;
- }
- /* Styles for sidebar menus.
- ------------------------------------------------------- */
- .left_admmenu, .left_admmenu ul, .left_admmenu li
- {
- padding: 0;
- margin: 0;
- list-style: none;
- }
- #left_admsection
- {
- background-color: #ecedf3;
- padding: 1px;
- border: 1px solid #ADADAD;
- width: 160px;
- float: left;
- margin-right: 10px;
- }
- .adm_section h4.titlebg
- {
- font-size: 95%;
- margin-bottom: 5px;
- }
- #main_container
- {
- position: relative;
- }
- .left_admmenu li
- {
- padding: 0 0 0 0.5em;
- }
- .left_admmenu
- {
- margin-bottom: 1.1em;
- }
- #main_admsection
- {
- position: relative;
- left: 0;
- right: 0;
- overflow: hidden;
- }
- tr.windowbg td, tr.windowbg2 td, tr.approvebg td, tr.highlight2 td
- {
- padding: 0.3em 0.7em;
- }
- #credits p
- {
- padding: 0;
- font-style: italic;
- margin: 0;
- }
- /* Styles for generic tables.
- ------------------------------------------------------- */
- .topic_table table
- {
- width: 100%;
- }
- .topic_table .icon1, .topic_table .icon2, .topic_table .stats
- {
- text-align: center;
- }
- #topic_icons
- {
- margin-top: 1em;
- }
- #topic_icons .description
- {
- margin: 0;
- }
- .topic_table table thead
- {
- border-bottom: 1px solid #fff;
- }
- /* the subject column */
- .topic_table td
- {
- font-size: 1em;
- }
- .topic_table td.subject
- {
- padding: 4px;
- }
- .topic_table td.subject p, .topic_table td.stats, .topic_table td.lastpost
- {
- font-size: 0.85em;
- padding: 0;
- margin: 0;
- }
- .topic_table td.lastpost, .topic_table td.lastpost
- {
- font-size: 0.9em;
- line-height: 100%;
- padding: 4px;
- }
- .topic_table td.stickybg2
- {
- background-image: url(../images/icons/quick_sticky.gif);
- background-repeat: no-repeat;
- background-position: 98% 4px;
- }
- .topic_table td.lockedbg2
- {
- background-image: url(../images/icons/quick_lock.gif);
- background-repeat: no-repeat;
- background-position: 98% 4px;
- }
- .topic_table td.lastpost
- {
- background-image: none;
- }
- /* Styles for (fatal) errors.
- ------------------------------------------------- */
- #fatal_error
- {
- border: 1px solid #aaa;
- }
- .errorbox
- {
- padding: 1em;
- border: 1px solid #cc3344;
- color: #000;
- background-color: #ffe4e9;
- margin: 1em 0;
- }
- .errorbox h3
- {
- padding: 0;
- margin: 0;
- font-size: 1.1em;
- text-decoration: underline;
- }
- .errorbox p
- {
- margin: 1em 0 0 0;
- }
- .errorbox p.alert
- {
- padding: 0;
- margin: 0;
- float: left;
- width: 1em;
- font-size: 1.5em;
- }
- /* Styles for the profile section.
- ------------------------------------------------- */
- dl
- {
- overflow: auto;
- margin: 0;
- padding: 0;
- }
- /* Fixes for the core theme */
- #profileview
- {
- padding: 1px;
- border: 1px solid #696969;
- background-color: #ecedf3;
- }
- #profileview .content
- {
- border: none;
- }
- #basicinfo .content
- {
- padding: 1em;
- }
- #detailedinfo .content
- {
- padding: 0.7em 1.2em;
- border-left: 1px solid #aaa;
- }
- /* The basic user info on the left */
- #basicinfo
- {
- width: 20%;
- float: left;
- }
- #detailedinfo
- {
- width: 78%;
- float: right;
- }
- #basicinfo h4
- {
- font-size: 135%;
- font-weight: 100;
- line-height: 105%;
- white-space: pre-wrap; /* css-2.1 */
- word-wrap: break-word; /* Internet Explorer 5.5+ */
- overflow: hidden;
- }
- #basicinfo h4 span.position
- {
- font-size: 80%;
- font-weight: 100;
- display: block;
- }
- #basicinfo img.avatar
- {
- display: block;
- margin: 10px 0 0 0;
- }
- #basicinfo ul
- {
- list-style-type: none;
- margin: 10px 0 0 0;
- }
- #basicinfo ul li
- {
- display: block;
- float: left;
- margin-right: 5px;
- height: 20px;
- }
- #basicinfo span#userstatus
- {
- display: block;
- clear: both;
- }
- #basicinfo span#userstatus img
- {
- vertical-align: middle;
- }
- #detailedinfo div.content dl, #tracking div.content dl
- {
- clear: right;
- overflow: auto;
- margin: 0 0 18px 0;
- padding: 0 0 15px 0;
- border-bottom: 1px solid #ccc;
- }
- #detailedinfo div.content dt, #tracking div.content dt
- {
- width: 30%;
- float: left;
- margin: 0 0 3px 0;
- padding: 0;
- font-weight: bold;
- clear: both;
- }
- #detailedinfo div.content dd, #tracking div.content dd
- {
- width: 70%;
- float: left;
- margin: 0 0 3px 0;
- padding: 0;
- }
- #detailedinfo div.content dl.noborder
- {
- border-bottom: 0;
- }
- #detailedinfo div.content dt.clear
- {
- width: 100%;
- }
- .signature, .custom_fields_above_signature, .attachments
- {
- width: 98%;
- overflow: auto;
- clear: right;
- border-top: 1px solid #666;
- }
- .signature h5
- {
- font-size: 100%;
- margin-bottom: 10px;
- }
- #personal_picture
- {
- display: block;
- margin-bottom: 0.3em;
- }
- #avatar_server_stored div
- {
- float: left;
- }
- #main_admsection #basicinfo, #main_admsection #detailedinfo
- {
- width: 100%;
- }
- #main_admsection #detailedinfo .content
- {
- border: none !important;
- }
- #main_admsection #basicinfo
- {
- border-bottom: 1px solid #ccc;
- }
- #main_admsection #basicinfo h4
- {
- float: left;
- }
- #main_admsection #basicinfo img.avatar
- {
- float: right;
- vertical-align: top;
- }
- #main_admsection #basicinfo ul
- {
- clear: left;
- padding-top: 10px;
- }
- #main_admsection #basicinfo span#userstatus
- {
- clear: left;
- }
- #main_admsection #basicinfo p#infolinks
- {
- display: none;
- clear: both;
- }
- #main_admsection #basicinfo .botslice
- {
- clear: both;
- }
- /* Simple feedback messages */
- div#profile_error, div#profile_success
- {
- margin: 0 0 1em 0;
- padding: 1em 2em;
- border: 1px solid;
- }
- div#profile_error
- {
- border-color: red;
- color: red;
- background: #fee;
- }
- div#profile_error span
- {
- text-decoration: underline;
- }
- div#profile_success
- {
- border-color: green;
- color: green;
- background: #efe;
- }
- /* Profile statistics */
- #generalstats div.content dt
- {
- width: 50%;
- float: left;
- margin: 0 0 3px 0;
- padding: 0;
- font-weight: bold;
- clear: both;
- }
- #generalstats div.content dd
- {
- width: 50%;
- float: left;
- margin: 0 0 3px 0;
- padding: 0;
- }
- /* Activity by time */
- .activity_stats
- {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .activity_stats li
- {
- width: 4.16%;
- float: left;
- }
- .activity_stats li span
- {
- display: block;
- border: solid #000;
- border-width: 1px 1px 0 0;
- text-align: center;
- }
- .activity_stats li.last span
- {
- border-right: none;
- }
- .activity_stats li div.bar
- {
- margin: 0 auto;
- width: 15px;
- }
- .activity_stats li div.bar div
- {
- background: url('../images/bar.gif');
- }
- .activity_stats li div.bar span
- {
- position: absolute;
- top: -1000em;
- left: -1000em;
- }
- /* Most popular boards by posts and activity */
- #popularposts
- {
- width: 50%;
- float: left;
- }
- #popularactivity
- {
- width: 50%;
- float: right;
- }
- #popularposts div.content dt, #popularactivity div.content dt
- {
- width: 65%;
- float: left;
- margin: 0 0 3px 0;
- padding: 0;
- font-weight: bold;
- clear: both;
- }
- #popularposts div.content dd, #popularactivity div.content dd
- {
- width: 35%;
- float: left;
- margin: 0 0 3px 0;
- padding: 0;
- }
- .profile_pie
- {
- background-image: url(../images/stats_pie.png);
- float: left;
- height: 20px;
- width: 20px;
- margin: 0 1em 0 0;
- padding: 0;
- text-indent: -1000em;
- }
- /* View posts */
- .time
- {
- float: right;
- }
- .counter
- {
- margin: 0 0 0 0;
- padding: 0.2em 0.5em 0.1em 0.2em;
- font-size: 2.2em;
- font-weight: bold;
- color: #354c5f;
- float: left;
- }
- .list_posts
- {
- border-top: 1px solid #adadad;
- padding-top: 1em;
- margin-top: 0.5em;
- }
- div.core_posts
- {
- border: 1px solid #adadad;
- margin-bottom: 3px;
- }
- div.core_posts div.content
- {
- background: none;
- border: none;
- }
- .topic h4
- {
- margin: 3px 0;
- }
- .mod_icons
- {
- text-align: right;
- margin-right: 1em;
- }
- #permissions div.tborder
- {
- margin-bottom: 2em;
- }
- #permissions ul
- {
- padding: 0;
- margin: 1px 0 0 0;
- border-top: 1px solid #e5e5e8;
- float: left;
- width: 100%;
- }
- #permissions div.permission_name
- {
- width: 48%;
- list-style: none;
- border-right: 1px solid #e5e5e8;
- background: #ecedf3;
- margin: 0 1% 0 0;
- padding: 0.7em 0.7em 0.8em 0.7em;
- line-height: 1em;
- }
- #permissions li
- {
- width: 100%;
- padding: 0;
- list-style: none;
- margin: 0 0 1px 0;
- }
- #permissions li span.permission_status, #permissions li span.alert
- {
- line-height: 2.9em;
- font-size: 0.85em;
- }
- #tracking div.content dl
- {
- border-bottom: 0;
- margin: 0;
- padding: 0;
- }
- #creator dl
- {
- margin: 0;
- }
- #creator dt
- {
- width: 40%;
- float: left;
- clear: both;
- margin: 0 0 10px 0;
- }
- #creator dd
- {
- float: left;
- width: 60%;
- margin: 0 0 10px 0;
- overflow: auto;
- }
- .ignoreboards
- {
- margin: 0 2%;
- padding: 0;
- width: 45%;
- }
- .ignoreboards a
- {
- font-weight: bold;
- text-decoration: none;
- border-bottom: 1px solid #c4c4c4;
- padding: 0.1em 0;
- }
- .ignoreboards a:hover
- {
- text-decoration: none;
- border-bottom: 1px solid #476c8e;
- }
- .ignoreboards ul
- {
- margin: 0;
- padding: 0;
- }
- .ignoreboards li
- {
- list-style: none;
- float: left;
- clear: both;
- }
- .ignoreboards li.category
- {
- margin: 0.7em 0 0 0;
- width: 100%;
- }
- .ignoreboards li ul
- {
- margin: 0.2em 0 0 0;
- }
- .ignoreboards li.category ul li.board
- {
- width: 93%;
- }
- #theme_settings
- {
- overflow: auto;
- margin: 0;
- padding: 0;
- }
- #theme_settings li
- {
- list-style: none;
- margin: 10px 0;
- padding: 0;
- }
- /*Paid Subscriptions*/
- #paid_subscription
- {
- width: 100%;
- }
- #paid_subscription dl.settings
- {
- margin-bottom: 0;
- }
- #paid_subscription dl.settings dd, #paid_subscription dl.settings dt
- {
- margin-bottom: 4px;
- }
- /*pick theme*/
- #pick_theme
- {
- width: 100%;
- float: left;
- }
- /*Issue a warning*/
- #warn_body{
- width: 80%;
- font-size: 0.9em;
- }
- /* Styles for the statistics center.
- ------------------------------------------------- */
- #statistics
- {
- padding-bottom: 0.5em;
- }
- #statistics h4.titlebg
- {
- text-align: center;
- margin-bottom: 5px;
- }
- #stats_left, #top_posters, #top_topics_replies, #top_topics_starter
- {
- float: left;
- width: 49.5%;
- }
- #stats_right, #top_boards, #top_topics_views, #most_online
- {
- float: right;
- width: 49.5%;
- }
- dl.stats
- {
- clear: both;
- overflow: hidden;
- margin: 0;
- padding: 0;
- }
- dl.stats dt
- {
- width: 49%;
- float: left;
- margin: 0 0 4px 0;
- line-height: 16px;
- padding: 0;
- clear: both;
- font-size: 1em;
- }
- dl.stats dd
- {
- text-align: right;
- width: 50%;
- font-size: 1em;
- float: right;
- margin: 0 0 4px 0;
- line-height: 16px;
- padding: 0;
- }
- .stats_bar
- {
- float: left;
- background-image: url(../images/bar_stats.png);
- height: 16px;
- font-size: 0.9em;
- display: block;
- text-align: left;
- color: #fff;
- font-weight: bold;
- background-position: top center;
- }
- .stats_bar span
- {
- padding-left: 2px;
- }
- /* Styles for the personal messages section.
- ------------------------------------------------- */
- #personal_messages
- {
- padding: 1px;
- }
- #personal_messages #top_subject
- {
- padding-left: 11.75em !important;
- }
- #personal_messages div.labels
- {
- padding: 0 1em 0 0;
- }
- #personal_messages .capacity_bar
- {
- background: #fff;
- border: 1px solid #000;
- height: 7px;
- width: 75%;
- margin: 0 auto;
- }
- #personal_messages .capacity_bar div
- {
- border: none;
- height: 7px;
- }
- #personal_messages .capacity_bar div.empty
- {
- background: #468008;
- }
- #personal_messages .capacity_bar div.filled
- {
- background: #EEA800;
- }
- #personal_messages .capacity_bar div.full
- {
- background: #A53D05;
- }
- #personal_messages .reportlinks
- {
- padding: 0.5em 1.3em;
- }
- #searchLabelsExpand li
- {
- padding: 0.3em 0.5em;
- }
- /* Styles for the calendar section.
- ------------------------------------------------- */
- .calendar_table
- {
- margin-bottom: 0.7em;
- }
- /* Used to indicate the current day in the grid. */
- .calendar_today
- {
- background-color: #fff;
- }
- #month_grid
- {
- width: 200px;
- text-align: center;
- float: left;
- }
- #month_grid table
- {
- width: 200px;
- border-collapse: collapse;
- border: 1px solid #adadad;
- }
- #month_grid table td, #month_grid table th
- {
- border: 1px solid #adadad;
- }
- #main_grid table
- {
- width: 100%;
- padding-bottom: 4px;
- border-collapse: collapse;
- border: 1px solid #adadad;
- }
- #main_grid table td, #main_grid table th
- {
- border: 1px solid #adadad;
- }
- #main_grid table h3.catbg
- {
- text-align: center;
- border-top: 1px solid #adadad;
- border-bottom: none;
- }
- #main_grid table h4
- {
- border: none;
- }
- #main_grid table.weeklist td.windowbg
- {
- text-align: center;
- height: 49px;
- width: 25px;
- font-size: large;
- padding: 0 7px;
- border-bottom: 1px solid #adadad;
- }
- #main_grid table.weeklist td.weekdays
- {
- height: 49px;
- width: 100%;
- padding: 4px;
- text-align: left;
- vertical-align: middle;
- border-right: 1px solid #adadad;
- border-bottom: 1px solid #adadad;
- }
- #main_grid h3.weekly
- {
- text-align: center;
- padding-left: 0;
- font-size: large;
- height: 29px;
- }
- #main_grid h3 span.floatleft, #main_grid h3 span.floatright
- {
- display: block;
- }
- #main_grid table th.days
- {
- width: 14%;
- }
- #main_grid table td.weeks
- {
- vertical-align: middle;
- text-align: center;
- }
- #main_grid table td.days
- {
- vertical-align: top;
- }
- a.modify_event
- {
- color: red;
- }
- span.hidelink
- {
- font-style: italic;
- }
- #calendar_navigation
- {
- text-align: center;
- }
- #calendar .buttonlist_bottom
- {
- border-bottom: 1px solid #adadad;
- padding: 0 0 0 1ex;
- margin: 0 0 1ex 0;
- }
- /* Styles for the memberlist section.
- ------------------------------------------------- */
- #mlist_search
- {
- margin: auto;
- width: 400px;
- }
- /* Styles for the basic search section.
- ------------------------------------------------- */
- #simple_search p
- {
- padding: 0.5em;
- }
- #simple_search, #simple_search p, #advanced_search
- {
- text-align: center !important;
- margin: 0;
- }
- #search_error
- {
- font-style: italic;
- padding: 0.3em 1em;
- }
- #search_term_input
- {
- font-size: 115%;
- margin: 0 0 1em;
- }
- /* Styles for the advanced search section.
- ------------------------------------------------- */
- #searchform fieldset
- {
- text-align: left;
- padding: 0;
- margin: 0;
- border: none;
- }
- fieldset#advanced_search .roundframe
- {
- border-bottom: none !important;
- }
- #advanced_search dl#search_options
- {
- margin: 0 auto;
- width: 600px;
- padding-top: 1em;
- overflow: hidden;
- }
- #advanced_search dt
- {
- clear: both;
- float: left;
- padding: 0.2em;
- text-align: right;
- width: 20%;
- }
- #advanced_search dd
- {
- width: 75%;
- float: left;
- padding: 0.2em;
- margin: 0 0 0 0.5em;
- text-align: left;
- }
- #searchform p.clear
- {
- clear: both;
- }
- /* Styles for the search results page.
- ------------------------------------------------- */
- .pagelinks
- {
- padding: 0.5em;
- }
- .topic_table td blockquote, .topic_table td .quoteheader
- {
- margin: 0.5em;
- }
- .search_results_posts
- {
- overflow: hidden;
- }
- .search_results_posts .inner
- {
- padding: 0.5em 1em;
- overflow: hidden;
- }
- .search_results_posts .windowbg2
- {
- margin-top: 4px;
- }
- .search_results_posts .buttons
- {
- padding: 5px 1em 0 0;
- }
- /* Styles for the help section.
- ------------------------------------------------- */
- #helpmain
- {
- padding: 1em;
- border: 1px solid #696969;
- }
- #helpmain p
- {
- margin: 0 0 1.5em 0;
- line-height: 1.5em;
- }
- #helpmain ul
- {
- line-height: 1.5em;
- }
- /* Depreciated stuff from the old days.
- ------------------------------------------------- */
- /* This style will make sure all headers use the same padding throughout. */
- .headerpadding
- {
- padding: 0.5em;
- }
- /* smaller padding used in paragraphs, sections etc */
- .smallpadding
- {
- padding: 0.2em;
- }
- /* larger padding used in paragraphs, sections etc */
- .largepadding
- {
- padding: 0.7em;
- }
- /* A small space to the next section. */
- .marginbottom
- {
- margin-bottom: 1em;
- }
- /* On the top too. */
- .margintop
- {
- margin-top: 1em !important;
- }
- /* remove bold/italic styles */
- span.plainstyle
- {
- font-weight: normal;
- font-style: normal;
- }
- /* float a list horizontally */
- ul.horizlist
- {
- width: 100%;
- }
- ul.horizlist li
- {
- float: left;
- padding: 0.2em 0.4em 0.2em 0.4em;
- vertical-align: top;
- }
- /* make a inline-list */
- ul.nolist li
- {
- display: inline;
- }
- /* Helping style to clear floated items. */
- .clearfix:after
- {
- content: ".";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
- }
- .clearfix
- {
- display: inline-block;
- }
- /* Hides from IE-mac. \*/
- * html .clearfix
- {
- height: 1%;
- }
- .clearfix
- {
- display: block;
- }
- /* End hide from IE-mac. */
- /* This is used for tables that have a grid/border background color (such as the topic listing.) */
- .bordercolor
- {
- background-color: #adadad;
- padding: 0;
- }
- /* This is used on tables that should just have a border around them. */
- .tborder
- {
- padding: 1px;
- border: 1px solid #696969;
- background-color: #fff;
- }
- /* If some random peep decides to use a description class within a tborder (happened to me!) */
- .tborder .description
- {
- margin-bottom: 0;
- }
- /* Styles for print media.
- ------------------------------------------------------- */
- @media print
- {
- #headerarea
- {
- display: none;
- }
- .tborder
- {
- border: none;
- }
- }
|