Guest User

index.css

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