Advertisement
Tyler_

Untitled

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