Advertisement
Guest User

CSS za UG

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