Advertisement
ChelonianEgghead

Chex Quest Fan Forums Old Theme

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