Advertisement
Guest User

Untitled

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