Advertisement
Guest User

Untitled

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