Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 105.45 KB | None | 0 0
  1. /************************************************************************/
  2. /* IP.Board 3 CSS - By Rikki Tissier - (c)2011 Invision Power Services */
  3. /* Enhanced and modified by Ehren // http://www.ipbforumskins.com */
  4. /************************************************************************/
  5. /* ipb_styles.css */
  6. /************************************************************************/
  7.  
  8. /************************************************************************/
  9. /* RESET (Thanks to YUI) */
  10.  
  11. body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { margin:0; padding:0; }
  12. table { border-spacing:0; }
  13. fieldset,img { border:0; }
  14. address,caption,cite,code,dfn,th,var { font-style:normal; font-weight:normal; }
  15. ol,ul { list-style:none; }
  16. caption,th { text-align:left; }
  17. h1,h2,h3,h4,h5,h6 { font-size:100%; font-weight:normal; }
  18. q:before,q:after { content:''; }
  19. abbr,acronym { border:0; }
  20. hr { display: none; border: 0; }
  21. address{ display: inline; }
  22.  
  23. /************************************************************************/
  24. /* CORE ELEMENT STYLES */
  25.  
  26. body {
  27. font: normal 11px tahoma, helvetica, arial, sans-serif;
  28. background: #222 url("http://cstop.ro/forum/public/style_images/play/tactile_noise.png") repeat;
  29. color: #bcbcbc;
  30.  
  31. position: relative;
  32. padding-bottom: 20px;
  33. }
  34.  
  35. /* body#ipboard_body.redirector {
  36. background: #fff !important;
  37. } */
  38.  
  39. input, select, textarea {
  40. font: normal 12px tahoma, helvetica, arial, sans-serif;
  41. }
  42.  
  43. h3, strong { font-weight: bold; }
  44. em { font-style: italic; }
  45. img, .input_check, .input_radio { vertical-align: middle; }
  46. legend { display: none; }
  47. table { width: 100%; }
  48. td { padding: 3px; }
  49.  
  50. #anunturi a{
  51. color: #bcbcbc;
  52. }
  53.  
  54. #anunturi a:hover{
  55. color: #C9C9C9;
  56. }
  57.  
  58. a {
  59. color: #bcbcbc;
  60. text-decoration: none;
  61. }
  62.  
  63. a:hover { color: #D0D0D0; }
  64.  
  65. #index_stats a{ color: #bcbcbc; }
  66. #index_stats a:hover{ color: #bcbcbc; }
  67.  
  68. ::-moz-selection { color: #fff; background: #757575; }
  69. ::selection { color: #fff; background: #757575; }
  70.  
  71. /************************************************************************/
  72. /* LISTS */
  73.  
  74. .ipsList_inline > li {
  75. display: inline-block;
  76. margin: 0 3px;
  77. }
  78. .ipsList_inline > li:first-child { margin-left: 0; }
  79. .ipsList_inline > li:last-child { margin-right: 0; }
  80. .ipsList_inline.ipsList_reset > li:first-child { margin-left: 3px; }
  81. .ipsList_inline.ipsList_reset > li:last-child { margin-right: 3px; }
  82. .ipsList_inline.ipsList_nowrap { white-space: nowrap; }
  83.  
  84. .ipsList_withminiphoto > li { /*margin-bottom: 8px;*/ padding: 7px; }
  85. .ipsList_withmediumphoto > li .list_content { margin-left: 60px; }
  86. .ipsList_withminiphoto > li .list_content { margin-left: 44px; }
  87. #index_stats .ipsList_withtinyphoto .list_content,
  88. .ipsList_withtinyphoto > li .list_content { margin-left: 32px; }
  89. .list_content { word-wrap: break-word; }
  90.  
  91. .ipsList_data li { padding: 6px; line-height: 1.3; }
  92. .ipsList_data .row_data { display: inline-block; word-wrap: break-word; max-width: 100%; }
  93. .ipsList_data .row_title, .ipsList_data .ft {
  94. display: inline-block;
  95. float: left;
  96. width: 120px;
  97. font-weight: bold;
  98. text-align: right;
  99. padding-right: 10px;
  100. }
  101.  
  102. .ipsList_data.ipsList_data_thin .row_title, .ipsList_data.ipsList_data_thin .ft {
  103. width: 80px;
  104. }
  105.  
  106. /************************************************************************/
  107. /* TYPOGRAPHY */
  108.  
  109. .ipsType_pagetitle, .ipsType_subtitle {
  110. font: 300 26px/1.4 Helvetica, Arial, sans-serif;
  111. color: #eaeaea;
  112. }
  113. .ipsType_subtitle { font-size: 18px; }
  114. .ipsType_sectiontitle {
  115. font-size: 16px;
  116. font-weight: normal;
  117. color: #e0e0e0;
  118. padding: 5px 0;
  119. }
  120.  
  121. .ipsType_pagedesc {
  122. color: #e0e0e0;
  123. line-height: 1.5;
  124. }
  125.  
  126. .ipsType_pagedesc a { text-decoration: underline; }
  127.  
  128. .ipsType_textblock { line-height: 1.7; }
  129.  
  130. .ipsType_small { font-size: 11px; }
  131. .ipsType_smaller, .ipsType_smaller a { font-size: 11px !important; }
  132.  
  133. .ipsBox_container .ipsType_pagetitle{ margin-bottom: 6px; }
  134. .ipsReset { margin: 0px !important; padding: 0px !important; }
  135.  
  136. /************************************************************************/
  137. /* LAYOUT */
  138.  
  139. .wrapper{
  140. margin: 0 auto;
  141. min-width: 980px;
  142. max-width: 1600px;
  143. width: 90%;
  144. }
  145.  
  146. #content {
  147. padding: 5px 0px;
  148. line-height: 120%;
  149. }
  150.  
  151. /************************************************************************/
  152. /* COLORS */
  153.  
  154. .row1, .post_block.row1 { background-color: #292929; }
  155.  
  156. .row2, .post_block.row2 { background-color: #292929; }
  157.  
  158. /*.unread { background-color: #f7fbfc; }
  159.  
  160. .unread .altrow, .unread.altrow { background-color: #E2E9F0; }*/
  161.  
  162. .unread .highlight_unread{ font-weight: bold; }
  163.  
  164. #recentajaxcontent li,
  165. #idm_categories a,
  166. #index_stats .status_list li,
  167. #panel_files .file_listing li,
  168. #panel_screenshots #ss_linked li,
  169. .file_listing,
  170. #cart_totals td,
  171. div#member_filters li,
  172. #files li,
  173. #order_review td,
  174. #package_details .package_info,
  175. .block_list li,
  176. .package_view_top,
  177. .member_entry,
  178. #help_topics li,
  179. .ipsBox_container .ipsType_pagetitle,
  180. .userpopup dl,
  181. #announcements td,
  182. .preview_info,
  183. .sideVerticalList li,
  184. fieldset.with_subhead ul,
  185. .ipsList_data li,
  186. .ipsList_withminiphoto li,
  187. table.ipb_table td,
  188. .store_categories li,
  189. #mini_cart li,
  190. #index_stats div[id*="statusReply"],
  191. #ipg_category .ipg_category_row,
  192. .gallery_pane h2,
  193. .status_feedback li[id*="statusReply"],
  194. .ipsSideMenu ul li,
  195. .ipbfs_login_row,
  196. .ipbfs_login .clearfix,
  197. .articles .block-1,
  198. .articles .type-1x2x2 .article_row,
  199. #idm_category .idm_category_row,
  200. #category_list li a,
  201. .ipsComment{
  202. border-top: 1px solid #353535;
  203. border-bottom: 1px solid #252525;
  204. }
  205.  
  206. .ipbfs_login_row,
  207. .gallery_pane h2,
  208. .ipsBox_container .ipsType_pagetitle,
  209. #index_stats .status_list:first-of-type li:first-child,
  210. .ipsList_data li:first-of-type,
  211. .ipsList_withminiphoto li:first-of-type{
  212. border-top: 0;
  213. }
  214.  
  215. .ipsSideMenu ul,
  216. #register_form hr,
  217. #login_form hr,
  218. .ipsSettings_section,
  219. #index_stats div[id*="statusReply"]:first-of-type{
  220. border-top: 1px solid #252525;
  221. }
  222.  
  223. .articles .type-1x2x2 .article_row:last-of-type,
  224. .store_categories ul:last-of-type li:last-of-type,
  225. #idm_categories li:last-of-type a,
  226. #idm_category .idm_category_row:last-of-type,
  227. .sideVerticalList li:last-of-type,
  228. #index_stats div[id*="statusReply"].status_reply,
  229. .ipsList_withminiphoto li:last-of-type,
  230. .member_entry:last-of-type,
  231. .ipsList_data li:last-of-type,
  232. #help_topics li:last-of-type,
  233. table.ipb_table tr:last-of-type td{
  234. border-bottom: 0;
  235. }
  236.  
  237. /* primarily used for topic preview header */
  238. .highlighted, .highlighted .altrow { background-color: #232323; }
  239.  
  240. .border,
  241. .statistics,
  242. .post_block,
  243. .ipsComment,
  244. .popupInner,
  245. .no_messages,
  246. .poll_question ol,
  247. .ipsBox_container,
  248. .ipsFloatingAction,
  249. .column_view .post_body{
  250. background: #292929;
  251. }
  252.  
  253. #idm_category .idm_category_row,
  254. .store_categories li,
  255. #idm_categories a,
  256. .ipsList_data li,
  257. .ipsList_withminiphoto li,
  258. table.ipb_table tr td{
  259. background-image: #292929;
  260. background-repeat: repeat-x;
  261. background-position: 0 0;
  262. }
  263.  
  264. .ipsBox_container {
  265. border: 1px solid #393939;
  266. }
  267.  
  268. .ipsBox { background: #1e1e1e; }
  269.  
  270. .ipsBox_notice, .ipsBox_highlight {
  271. background: #222222;
  272. border-bottom: 1px solid #393939;
  273. }
  274.  
  275. .border{ border: 1px solid #454545; }
  276. .removeDefault .ipsBox, .removeDefault.ipsBox{ padding: 0; background: none transparent; }
  277. .removeDefault .ipsBox_container, .removeDefault.ipsBox_container{ border: 0; }
  278.  
  279. .maintitle {
  280. text-transform: uppercase;
  281. background: #222 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 0;
  282. color: #757575;
  283. text-shadow: rgba(0,0,0,0.25) 0px -1px 0px;
  284. padding: 12px;
  285. font-size: 12px;
  286. font-weight: 300;
  287. overflow: hidden;
  288. border-left: 1px solid rgba(255,255,255,0.1);
  289. border-right: 1px solid rgba(255,255,255,0.1);
  290. border-top: 1px solid rgba(255,255,255,0.1);
  291. }
  292.  
  293. .mticon {
  294. display: inline;
  295. border-bottom: 3px solid #16A085;
  296. padding-bottom: 13px;
  297. border-top: 3px solid rgba(255,255,255,0.15);
  298. padding-top: 11px;
  299. }
  300.  
  301. h3.maintitle{ font-weight: bold; }
  302.  
  303. .maintitle a { color: #fff; }
  304.  
  305. .collapsed .maintitle {
  306. opacity: 0.2;
  307. -moz-border-radius: 4px;
  308. -webkit-border-radius: 4px;
  309. border-radius: 4px;
  310. }
  311.  
  312. .collapsed .maintitle:hover { opacity: 0.4; }
  313.  
  314. .maintitle .toggle {
  315. visibility: hidden;
  316. background: url('{style_images_url}/cat_minimize.png') no-repeat;
  317. text-indent: -3000em;
  318. width: 32px; height: 22px;
  319. margin: -5px -5px -10px 0;
  320. display: block;
  321. outline: 0;
  322. }
  323.  
  324. .maintitle:hover .toggle { visibility: visible; }
  325.  
  326. .collapsed .toggle {
  327. background-image: url('{style_images_url}/cat_maximize.png');
  328. }
  329.  
  330. .header_left{ background: url('{style_images_url}/header_left.png') no-repeat 0 0; }
  331. .header_right{ background: url('{style_images_url}/header_right.png') no-repeat 100% 0; }
  332. .maintitle_base{ background: #363636 url('{style_images_url}/maintitle_base.png') repeat-x 0 0; }
  333.  
  334. .maintitle_base .maintitle{
  335. -webkit-box-shadow: none;
  336. -moz-box-shadow: none;
  337. box-shadow: none;
  338. border: 0;
  339. background: none transparent;
  340. }
  341.  
  342. /* mini badges */
  343. a.ipsBadge:hover { color: #ED7710; }
  344.  
  345. .ipsBadge_green { background: #2E2E2E; border: 1px solid #B53628; }
  346. .ipsBadge_purple { background: #2E2E2E; border: 1px solid #B53628; }
  347. .ipsBadge_grey { background: #2E2E2E; border: 1px solid #B53628; }
  348. .ipsBadge_lightgrey { background: #2E2E2E; border: 1px solid #B53628; }
  349. .ipsBadge_orange { background: #2E2E2E; border: 1px solid #B53628; }
  350. .ipsBadge_red { background: #2E2E2E; border: 1px solid #B53628; }
  351.  
  352. .bar {
  353.  
  354. }
  355.  
  356. .bar.altbar {
  357. /*background: #b6c7db;
  358. color: #1d3652;*/
  359. }
  360.  
  361. .header {
  362. color: #fff;
  363. text-shadow: rgba(0,0,0,0.8) 0px -1px 0px;
  364. background: #222222 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px;
  365. }
  366.  
  367. .header th{ border-bottom: 1px solid #393939; padding: 6px !important; }
  368.  
  369. body .ipb_table .header a,
  370. body .topic_options a {
  371. color: #fff;
  372. }
  373.  
  374. .bbc_url, .bbc_email {
  375. color: #bcbcbc;
  376. text-decoration: underline;
  377. }
  378.  
  379. /* Dates */
  380. .date, .poll_question .votes {
  381. color: #747474;
  382. font-size: 11px;
  383. }
  384.  
  385. .no_messages {
  386. padding: 15px 10px;
  387. }
  388.  
  389. /* Tab bars */
  390. .tab_bar {
  391. background-color: #2a2a2a;
  392. color: #818181;
  393. }
  394.  
  395. .tab_bar li.active {
  396. background-color: #454545;
  397. color: #fff;
  398. }
  399.  
  400. .tab_bar.no_title.mini {
  401. border-bottom: 8px solid #454545;
  402. }
  403.  
  404. /* Menu popups */
  405. .ipbmenu_content, .ipb_autocomplete {
  406. background: #1a1a1a;
  407. border: 1px solid #393939;
  408. -webkit-box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  409. -moz-box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  410. box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  411. }
  412.  
  413. .ipbmenu_content li, .ipb_autocomplete li {
  414. border-top: 1px solid #252525;
  415. border-bottom: 1px solid #111111;
  416. background: url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px;
  417. }
  418.  
  419. .ipb_autocomplete li{ padding: 3px; }
  420.  
  421. .ipb_autocomplete li.active {
  422. background-color: #252525;
  423. }
  424.  
  425. .ipbmenu_content a{ color: #fff; }
  426.  
  427. .ipbmenu_content a:hover { background: #202020 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px; }
  428.  
  429. /* Forms */
  430.  
  431. .input_submit {
  432. font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  433. text-transform: uppercase;
  434. background: #272727 repeat-x 0 0;
  435. border-color: #bcbcbc;
  436. color: #fff;
  437. font-size: 11px;
  438. padding: 10px 14px;
  439.  
  440.  
  441. }
  442.  
  443.  
  444. .input_submit:hover {
  445.  
  446. background-color: #B53628;
  447. color: #fff;
  448. }
  449.  
  450. .input_submit.alt {
  451. text-transform: uppercase;
  452. background: #272727 repeat-x 0 0;
  453. border-color: #323232;
  454. color: #fff;
  455.  
  456. }
  457.  
  458. .input_submit.alt:hover {
  459.  
  460. color: #B53628;
  461. }
  462.  
  463. .input_submit.delete {
  464. background: #ad2930 url('{style_images_url}/highlight_faint.png') repeat-x 0 0;
  465. border-color: #962D29;
  466. color: #fff;
  467. text-shadow: #771c20 0px -1px 0px;
  468. }
  469.  
  470. .input_submit.delete:hover { background-color: #bf3631; color: #fff; }
  471.  
  472. .input_submit:active{
  473. -webkit-box-shadow: inset rgba(0,0,0,0.3) 0px 1px 4px;
  474. -moz-box-shadow: inset rgba(0,0,0,0.3) 0px 1px 4px;
  475. box-shadow: inset rgba(0,0,0,0.3) 0px 1px 4px;
  476. position: relative;
  477. top: 1px;
  478. }
  479.  
  480. .input_submit.alt:active{
  481. -webkit-box-shadow: inset rgba(0,0,0,0.3) 0px 1px 4px;
  482. -moz-box-shadow: inset rgba(0,0,0,0.3) 0px 1px 4px;
  483. box-shadow: inset rgba(0,0,0,0.3) 0px 1px 4px;
  484. }
  485.  
  486. body#ipboard_body fieldset.submit,
  487. body#ipboard_body p.submit,
  488. .ipsForm_submit{
  489. background: #232323 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px;
  490. border-top: 1px solid #373737;
  491. }
  492.  
  493. /* Moderated styles */
  494. .moderated, body .moderated td, .moderated td.altrow, .post_block.moderated, .post_block.moderated .post_body,
  495. body td.moderated, body td.moderated {
  496. background-color: #36120e;
  497. }
  498.  
  499. .post_block.moderated { border: 0 !important; }
  500. .post_block.moderated .post_wrap, .post_block.moderated h3, .moderated .row2, .moderated .post_controls { background-color: #4a1a14; border: 0; }
  501. .moderated, .moderated a { color: #fcd9d9; }
  502. .moderated h3, .moderated h3 a { color: #fff !important; }
  503.  
  504. /************************************************************************/
  505. /* HEADER */
  506.  
  507. #header_bar {
  508. background: #323232 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 1px;
  509. padding: 0;
  510. text-align: right;
  511. }
  512.  
  513. #admin_bar {
  514. font-size: 11px;
  515. line-height: 28px;
  516. padding: 0 12px;
  517. background: #171717;
  518. border-bottom: 1px solid #2b2b2b;
  519. overflow: hidden;
  520. }
  521. #admin_bar li{ padding-left: 10px; padding-right: 10px; }
  522. #admin_bar li.active a { color: #fc6d35; }
  523. #admin_bar a { color: #8a8a8a; }
  524. #admin_bar a:hover { color: #fff; }
  525.  
  526. #user_navigation {
  527. color: #9f9f9f;
  528. float: right;
  529. font-size: 11px;
  530. line-height: 45px;
  531. height: 45px;
  532. overflow: hidden;
  533. border-left: 1px solid #2b2b2b;
  534. }
  535.  
  536. #user_navigation a {
  537. color: #fff;
  538. float: right;
  539. padding: 0 12px;
  540. line-height: 45px;
  541. outline: none;
  542. height: 45px;
  543. border-right: 1px solid #2b2b2b;
  544. }
  545.  
  546. #user_navigation a:hover {
  547. background: #232323;
  548. }
  549.  
  550. #user_navigation .user_photo{
  551. position: relative;
  552. height: 27px;
  553. width: auto;
  554. margin: -3px -8px 0px -8px;
  555. }
  556.  
  557. #user_navigation #sign_in img,
  558. #user_navigation #register_link img{ vertical-align: middle; position: relative; margin: -1px 2px 0 0; }
  559.  
  560. #user_navigation .ipsList_inline li { margin: 0; padding: 0; float: left; }
  561.  
  562. #user_link_dd, .dropdownIndicator {
  563. display: inline-block;
  564. width: 9px; height: 5px;
  565. background: url('{style_images_url}/header_dropdown.png') no-repeat left;
  566. }
  567.  
  568. #user_link_menucontent #links li {
  569. width: 50%;
  570. float: left;
  571. margin: 3px 0;
  572. white-space: nowrap;
  573. }
  574.  
  575. #user_link_menucontent #links a{ display: block; }
  576.  
  577. #user_link.menu_active #user_link_dd, .menu_active .dropdownIndicator, li.active .dropdownIndicator { background-position: right; }
  578. #community_app_menu .menu_active .dropdownIndicator { background-position: right; }
  579. #community_app_menu li.active .menu_active .dropdownIndicator { background-position: right; }
  580. #user_link_menucontent #statusForm { margin-bottom: 15px; }
  581. #user_link_menucontent #statusUpdate { margin-bottom: 5px; }
  582.  
  583. #user_link_menucontent > div {
  584. margin-left: 15px;
  585. width: 265px;
  586. text-align: left;
  587. }
  588.  
  589. #statusSubmitGlobal { margin-top: 3px; }
  590.  
  591. #user_navigation a#user_link.menu_active,
  592. #user_navigation a#notify_link.menu_active,
  593. #user_navigation a#inbox_link.menu_active {
  594. background: #1d1d1d;
  595. color: #fff;
  596. /*-moz-border-radius: 3px 3px 0 0;
  597. -webkit-border-top-left-radius: 3px;
  598. -webkit-border-top-right-radius: 3px;
  599. border-radius: 3px 3px 0 0;*/
  600. position: relative;
  601. z-index: 10000;
  602. }
  603.  
  604. #notify_link, #inbox_link {
  605. vertical-align: middle;
  606. width: 20px;
  607. padding: 0px 8px !important;
  608. position: relative;
  609. }
  610.  
  611. #notify_link img { background-image: url('http://cstop.ro/forum/public/style_images/acelv2/icon_notifyy.png'); }
  612. #inbox_link img { background-image: url('http://cstop.ro/forum/public/style_images/acelv2/icon_inboxx.png'); }
  613.  
  614. #notify_link img, #inbox_link img{
  615. width: 20px;
  616. height: 20px;
  617. background-repeat: no-repeat;
  618. background-position: 0 0;
  619. margin-top: -2px;
  620. }
  621.  
  622. #notify_link.menu_active img, #inbox_link.menu_active img{ background-position: 0 -20px; }
  623.  
  624. .services img{ margin: -1px -2px 0 -2px; }
  625.  
  626. #branding {
  627.  
  628. background: #1d1d1d url("http://i.imgur.com/zNToHw5.jpg") ;
  629. height: 210px;
  630. max-width: 100%;
  631. background-position: 50% 50%;
  632. }
  633.  
  634. #logo { opacity: 0; text-align: center; }
  635.  
  636. /* Text logo */
  637.  
  638. /*#logo a{
  639. color: #fff;
  640. height: 64px;
  641. line-height: 64px;
  642. padding: 0 12px;
  643. font-weight: bold;
  644. font-size: 24px;
  645. font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  646. display: block;
  647. text-decoration: none;
  648. margin-left: -390px;
  649. }*/
  650.  
  651. #nav_wrap{
  652. background: #171717;
  653. border-top: 1px solid #2b2b2b;
  654. border-bottom: 1px solid #2b2b2b;
  655. height: 45px;
  656.  
  657.  
  658. }
  659.  
  660. #primary_nav {
  661. font-size: 11px;
  662. text-transform: uppercase;
  663. font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  664. float: left;
  665. padding: 0;
  666. }
  667.  
  668. #community_app_menu > li { margin: 0; position: relative; }
  669.  
  670. #community_app_menu > li > a {
  671. border-right: 1px solid #2b2b2b;
  672. border-left: 1px solid #2b2b2b;
  673. color: #bcbcbc;
  674. background: #171717;
  675.  
  676. display: block;
  677. outline: none;
  678. padding: 0px 15px;
  679. line-height: 45px;
  680. height: 45px;
  681. -webkit-transition-property:color, text;
  682. -webkit-transition-duration: 0.3s, 0.3s;
  683. -webkit-transition-timing-function: linear, ease-in;
  684. -moz-transition-property:color, text;
  685. -moz-transition-duration:0.3s;
  686. -moz-transition-timing-function: linear, ease-in;
  687. -o-transition-property:color, text;
  688. -o-transition-duration:0.3s;
  689. -o-transition-timing-function: linear, ease-in;
  690. }
  691.  
  692. #community_app_menu > li > a:hover,
  693. #community_app_menu > li > a.menu_active {
  694. background: #1d1d1d;
  695. color: #B53628;
  696.  
  697. }
  698.  
  699. #community_app_menu > li.active a {
  700. background: #212121;
  701. color: #B53628;
  702. position: relative;
  703. float: left;
  704. }
  705.  
  706. #community_app_menu > li > a.ipbmenu img{ margin-right: -6px; }
  707.  
  708. #primary_extra_menucontent,
  709. #more_apps_menucontent, .submenu_container {
  710. background: #202020;
  711. border: 1px solid #272727;
  712. border-top: 0;
  713. font-size: 11px;
  714. min-width: 140px;
  715. float: left;
  716. -webkit-box-shadow: none;
  717. -moz-box-shadow: none;
  718. box-shadow: none;
  719. -moz-border-radius: 0 0 4px 4px;
  720. -webkit-border-bottom-right-radius: 4px;
  721. -webkit-border-bottom-left-radius: 4px;
  722. border-radius: 0 0 4px 4px;
  723. }
  724.  
  725. #primary_extra_menucontent li,
  726. #more_apps_menucontent li, .submenu_container li {
  727. padding: 0;
  728. border: 0;
  729. background: none transparent;
  730. float: none !important;
  731. min-width: 150px;
  732. }
  733.  
  734. #primary_extra_menucontent a,
  735. #more_apps_menucontent a, .submenu_container a {
  736. display: block;
  737. padding: 8px 10px;
  738. color: #fff;
  739. }
  740.  
  741. #primary_extra_menucontent a:hover,
  742. #more_apps_menucontent a:hover, .submenu_container a:hover { background: #242424; color: #fff; }
  743.  
  744. #primary_extra_menucontent li:last-child a,
  745. #more_apps_menucontent li:last-child a{
  746. -moz-border-radius: 0 0 4px 4px;
  747. -webkit-border-bottom-right-radius: 4px;
  748. -webkit-border-bottom-left-radius: 4px;
  749. border-radius: 0 0 4px 4px;
  750. }
  751.  
  752. #community_app_menu .submenu_container { width: 260px; }
  753. #community_app_menu .submenu_container li {width: 260px; }
  754.  
  755. #secondary_navigation{
  756. background: #202020 url('{style_images_url}/secondary_nav_bg.png') repeat-x 0 0;
  757. border: 1px solid #2d2d2d;
  758. text-shadow: rgba(0,0,0,0.8) 0px -1px 0px;
  759. -moz-border-radius: 3px;
  760. -webkit-border-radius: 3px;
  761. border-radius: 3px;
  762. overflow: hidden;
  763. line-height: 37px;
  764. margin-bottom: 15px;
  765. }
  766.  
  767. #secondary_navigation a{
  768. color: #bcbcbc;
  769. line-height: 37px;
  770. height: 37px;
  771. }
  772.  
  773. #secondary_navigation a:hover{ color: #bcbcbc; }
  774.  
  775. #secondary_navigation #breadcrumb li {
  776. float: left;
  777. }
  778.  
  779. #secondary_navigation #breadcrumb li a {
  780. padding-left: 12px;
  781. margin-left: -15px;
  782. background: url('{style_images_url}/secondary_nav.png') no-repeat 0 0;
  783. display: block;
  784. outline: none;
  785. text-decoration: none;
  786. }
  787.  
  788. #secondary_navigation #breadcrumb li.first a{
  789. margin-left: 0;
  790. background: none;
  791. padding-left: 0px;
  792. }
  793.  
  794. #secondary_navigation #breadcrumb li span{
  795. display: block;
  796. padding-right: 17px;
  797. padding-left: 4px;
  798. background: url('{style_images_url}/secondary_nav.png') no-repeat 100% 0;
  799. }
  800.  
  801. #secondary_navigation #breadcrumb li > span{ padding-left: 4px; background: none transparent; color: #d7d7d7; }
  802.  
  803. #secondary_navigation #breadcrumb li.first a span{
  804. padding-left: 12px;
  805. -webkit-border-top-left-radius: 3px;
  806. -webkit-border-bottom-left-radius: 3px;
  807. -moz-border-radius: 3px 0px 0px 3px;
  808. border-radius: 3px 0px 0px 3px;
  809. }
  810.  
  811. #secondary_navigation #breadcrumb li a:hover{
  812. background-position: 0 -43px;
  813. }
  814.  
  815. #secondary_navigation #breadcrumb li a:hover span{
  816. background-position: 100% -43px;
  817. }
  818.  
  819. #secondary_navigation #breadcrumb li a:active{
  820. background-position: 0 -86px;
  821. }
  822.  
  823. #secondary_navigation #breadcrumb li a:active span{
  824. background-position: 100% -86px;
  825. }
  826.  
  827. #secondary_links{ overflow: hidden; }
  828. #secondary_links li{ float: left; margin: 0; }
  829.  
  830. #secondary_links a{
  831. padding: 0 12px;
  832. display: block;
  833. }
  834.  
  835. #secondary_links img {
  836. vertical-align: top;
  837. width: 16px;
  838. height: 16px;
  839. position: relative;
  840. opacity: 0.8;
  841. margin: 10px -4px 0 -4px;
  842. }
  843.  
  844. #secondary_links a:hover img { opacity: 1; }
  845.  
  846. .breadcrumb {
  847. color: #d7d7d7;
  848. font-size: 11px;
  849. }
  850. .breadcrumb a { color: #d7d7d7; }
  851. .breadcrumb li .nav_sep { margin: 0 5px 0 0; }
  852. .breadcrumb li:first-child{ margin-left: 0; }
  853. /*.breadcrumb.top { margin-bottom: 10px; }*/
  854. .breadcrumb.bottom { margin-top: 10px; width: 100%; display: none; }
  855.  
  856. .ipsHeaderMenu {
  857. float: left;
  858. background: #1d1d1d;
  859. padding: 10px;
  860. -moz-border-radius: 0 0 6px 6px;
  861. -webkit-border-bottom-right-radius: 6px;
  862. -webkit-border-bottom-left-radius: 6px;
  863. border-radius: 0 0 6px 6px;
  864. overflow: hidden;
  865. width: 340px;
  866. }
  867.  
  868. .ipsHeaderMenu.boxShadow{
  869. -webkit-box-shadow: rgba(0,0,0,0.4) 0px 0px 10px;
  870. -moz-box-shadow: rgba(0,0,0,0.4) 0px 0px 10px;
  871. box-shadow: rgba(0,0,0,0.4) 0px 0px 10px;
  872. }
  873.  
  874. .ipsHeaderMenu .ipsType_sectiontitle { margin-bottom: 8px; }
  875.  
  876. #user_notifications_link_menucontent.ipsHeaderMenu,
  877. #user_inbox_link_menucontent.ipsHeaderMenu {
  878. width: 300px;
  879. }
  880.  
  881. /************************************************************************/
  882. /* SEARCH */
  883.  
  884. #search { margin-top: 33px; }
  885.  
  886. #main_search {
  887. font-size: 12px;
  888. border: 0;
  889. padding: 0;
  890. background: transparent;
  891. width: 138px;
  892. outline: 0;
  893. }
  894.  
  895. #main_search.inactive { color: #424242; }
  896.  
  897. #search_wrap {
  898. position: relative;
  899. background: #fff;
  900. display: block;
  901. padding: 0 35px 0 4px;
  902. height: 35px;
  903. line-height: 35px;
  904.  
  905. -webkit-border-top-left-radius: 3px;
  906. -webkit-border-top-right-radius: 4px;
  907. -webkit-border-bottom-right-radius: 4px;
  908. -webkit-border-bottom-left-radius: 3px;
  909.  
  910. -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  911. -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  912. box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  913. min-width: 230px;
  914. }
  915.  
  916. #adv_search {
  917. width: 35px;
  918. height: 35px;
  919.  
  920. border-radius: 3px;
  921. background: url('{style_images_url}/advanced_search.png') no-repeat 50% 50%;
  922. text-indent: -3000em;
  923. display: inline-block;
  924. margin-left: 3px;
  925. }
  926.  
  927.  
  928. #search .submit_input {
  929. background: #424242 url('{style_images_url}/search_icon.png') no-repeat 50%;
  930. text-indent: -3000em;
  931. padding: 0; border: 0;
  932. display: block;
  933. width: 30px;
  934. height: 35px;
  935. position: absolute;
  936. right: 0; top: 0; bottom: 0;
  937.  
  938. -webkit-border-top-right-radius: 3px;
  939. -webkit-border-bottom-right-radius: 3px;
  940.  
  941. -webkit-box-shadow: inset 0px 1px 0 rgba(255,255,255,0.2);
  942. -moz-box-shadow: inset 0px 1px 0 rgba(255,255,255,0.2);
  943. box-shadow: inset 0px 1px 0 rgba(255,255,255,0.2);
  944. }
  945.  
  946. #search .submit_input:hover{ background-color: #bcbcbc; }
  947.  
  948. #search_options {
  949. font-size: 10px;
  950. height: 26px;
  951. line-height: 26px;
  952. margin: 4px 3px 3px 0;
  953. padding: 0 6px;
  954.  
  955. background: #eaeaea url('{style_images_url}/highlight_faint.png') repeat-x 0 1px;
  956. color: #222;
  957. display: inline-block;
  958. text-shadow: #fff 0px 1px 0px;
  959. float: right;
  960. }
  961.  
  962. #search_options_menucontent { min-width: 130px; padding: 0; background: #1a1a1a; border: 1px solid #393939; }
  963. #search_options_menucontent input { margin-right: 10px; }
  964. #search_options_menucontent li { border-top: 1px solid #252525; border-bottom: 1px solid #111111; background: url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px; white-space: nowrap; }
  965. #search_options_menucontent li:last-of-type{ border-bottom: 0; }
  966. #search_options_menucontent label:hover{ background: #202020 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px; }
  967. #search_options_menucontent label { cursor: pointer; display: block; padding: 0 6px; }
  968. #search_options_menucontent li.title{ padding: 3px 6px; }
  969.  
  970. /************************************************************************/
  971. /* FOOTER */
  972.  
  973. #backtotop,
  974. #bottomScroll{
  975. width: 24px;
  976. height: 24px;
  977. line-height: 20px;
  978. left: 50%;
  979. top: 50%;
  980. margin-left: -12px;
  981. margin-top: -12px;
  982. position: absolute;
  983. display: inline-block;
  984. background: #151515;
  985. -webkit-box-shadow: inset rgba(0,0,0,0.7) 0px 1px 3px;
  986. -moz-box-shadow: inset rgba(0,0,0,0.7) 0px 1px 3px;
  987. box-shadow: inset rgba(0,0,0,0.7) 0px 1px 3px;
  988. text-align: center;
  989. -moz-border-radius: 16px;
  990. -webkit-border-radius: 16px;
  991. border-radius: 16px;
  992. opacity: 0.4;
  993. outline: 0;
  994. }
  995.  
  996. #bottomScroll:hover, #backtotop:hover {
  997. background: #151515;
  998. color: #fff;
  999. opacity: 1;
  1000. }
  1001.  
  1002. #footer_utilities {
  1003. padding: 8px;
  1004. position: relative;
  1005. border: 1px solid #454545;
  1006. text-shadow: rgba(0,0,0,0.8) 0px -1px 0px;
  1007. background: #292929 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px;
  1008. }
  1009.  
  1010. #footer_utilities, #footer_utilities a{ color: #b8b8b8; }
  1011. #footer_utilities .ipbmenu_content a{ color: #fff; }
  1012.  
  1013. #footer_utilities .ipsList_inline{ margin-top: 3px; clear: left; float: left; }
  1014. #footer_utilities .ipsList_inline > li{ margin: 0; }
  1015. #footer_utilities .ipsList_inline > li > a { margin-right: 0px; padding: 4px 10px; display: inline-block; }
  1016. #footer_utilities a.menu_active {
  1017. background: url('{style_images_url}/trans30.png') repeat;
  1018. background: rgba(0,0,0,0.3);
  1019. color: #fff;
  1020. text-shadow: rgba(0,0,0,0.3) 0px -1px 0px;
  1021. -moz-border-radius: 10px;
  1022. -webkit-border-radius: 10px;
  1023. border-radius: 10px;
  1024. -webkit-box-shadow: inset 0px 1px 3px rgba(0,0,0,0.5), rgba(255,255,255,0.16) 0px 1px 0px, rgba(255,255,255,0.05) 0px 0px 0px 1px;
  1025. -moz-box-shadow: inset 0px 1px 3px rgba(0,0,0,0.5), rgba(255,255,255,0.16) 0px 1px 0px, rgba(255,255,255,0.05) 0px 0px 0px 1px;
  1026. box-shadow: inset 0px 1px 3px rgba(0,0,0,0.5), rgba(255,255,255,0.16) 0px 1px 0px, rgba(255,255,255,0.05) 0px 0px 0px 1px;
  1027. }
  1028.  
  1029. #copyright {
  1030. /*color: #848484;*/
  1031. text-align: right;
  1032. line-height: 22px;
  1033. float: right;
  1034. }
  1035.  
  1036. /*#copyright a { color: #848484; }*/
  1037.  
  1038. #ipsDebug_footer {
  1039. width: 900px;
  1040. margin: 8px auto 0px auto;
  1041. text-align: center;
  1042. color: #404040;
  1043. font-size: 11px;
  1044. }
  1045. #ipsDebug_footer strong { margin-left: 20px; }
  1046. #ipsDebug_footer a { color: #404040; }
  1047.  
  1048. #rss_menu {
  1049. background-color: #f78e30;
  1050. border: 0;
  1051. }
  1052.  
  1053. #rss_menu li { border: 0; border-bottom: 1px solid #fbb969; }
  1054. #rss_menu li:last-of-type{ border-bottom: 0; }
  1055. #rss_menu a {
  1056. color: #fff;
  1057. text-shadow: #dc7214 0px -1px 0px;
  1058. padding: 5px 8px;
  1059. background: url("{style_images_url}/highlight_faint.png") repeat-x 0 -1px;
  1060. }
  1061.  
  1062. #rss_menu a:hover {
  1063. background: #f89f37 url("{style_images_url}/highlight_faint.png") repeat-x 0 -1px;
  1064. color: #fff;
  1065. }
  1066.  
  1067. /************************************************************************/
  1068. /* GENERAL CONTENT */
  1069.  
  1070. .ipsUserPhoto {
  1071. padding: 1px;
  1072. border: 1px solid #515151;
  1073. background: #393939;
  1074. -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
  1075. -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
  1076. box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
  1077. }
  1078.  
  1079. .ipsUserPhotoLink:hover .ipsUserPhoto {
  1080. border-color: #5f5f5f;
  1081. -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
  1082. -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
  1083. box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
  1084. }
  1085.  
  1086. .ipsUserPhoto_variable { max-width: 155px; }
  1087. .ipsUserPhoto_large { max-width: 90px; max-height: 90px; }
  1088. .ipsUserPhoto_medium { width: 50px; height: 50px; }
  1089. .ipsUserPhoto_mini { width: 30px; height: 30px; }
  1090. .ipsUserPhoto_tiny { width: 20px; height: 20px; }
  1091. .ipsUserPhoto_icon { width: 16px; height: 16px; }
  1092.  
  1093. .general_box {
  1094.  
  1095. }
  1096.  
  1097. .general_box .none {
  1098. color: #bcbcbc;
  1099. }
  1100.  
  1101. .general_box.poll{ margin: 0; border-width: 0 0 1px 0; }
  1102.  
  1103. .ipsBox, .ipsPad { padding: 9px; }
  1104. .ipsPad_double { padding: 9px 19px; } /* 19px because it's still only 1px border to account for */
  1105. .ipsBox_withphoto { margin-left: 65px; }
  1106.  
  1107. .ipsBox_notice {
  1108. padding: 10px;
  1109. line-height: 1.6;
  1110. margin-bottom: 10px;
  1111. }
  1112. .ipsBox_container .ipsBox_notice { /*margin: -10px -10px 10px -10px; */ }
  1113. .ipsPad_half { padding: 4px !important; }
  1114. .ipsPad_left { padding-left: 9px; }
  1115. .ipsPad_top { padding-top: 9px; }
  1116. .ipsPad_top_slimmer { padding-top: 7px; }
  1117. .ipsPad_top_half { padding-top: 4px; }
  1118. .ipsPad_top_bottom { padding-top: 9px; padding-bottom: 9px; }
  1119. .ipsPad_top_bottom_half { padding-top: 4px; padding-bottom: 4px; }
  1120. .ipsMargin_top { margin-top: 9px; }
  1121.  
  1122. .ipsBlendLinks_target .ipsBlendLinks_here {
  1123. opacity: 0.5;
  1124. -webkit-transition: all 0.1s ease-in-out;
  1125. -moz-transition: all 0.2s ease-in-out;
  1126. }
  1127. .ipsBlendLinks_target:hover .ipsBlendLinks_here { opacity: 1; }
  1128.  
  1129. .block_list > li {
  1130. padding: 5px 10px;
  1131. }
  1132.  
  1133. .ipsModMenu {
  1134. width: 15px;
  1135. height: 15px;
  1136. display: inline-block;
  1137. text-indent: -2000em;
  1138. background: url('{style_images_url}/moderation_cog.png') no-repeat;
  1139. margin-right: 5px;
  1140. vertical-align: middle;
  1141. }
  1142.  
  1143. .ipsBadge {
  1144.  
  1145. vertical-align: middle;
  1146. display: inline-block;
  1147. height: 16px;
  1148. line-height: 16px;
  1149. padding: 0 6px;
  1150. font-size: 10px;
  1151. font-weight: bold;
  1152. font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
  1153. text-transform: uppercase;
  1154. color: #F01B1B;
  1155.  
  1156. -moz-border-radius: 0px;
  1157. -webkit-border-radius: 3px;
  1158. border-radius: 0px;
  1159. background-image: url('');
  1160. background-repeat: repeat-x;
  1161. background-position: 0 -1px;
  1162. }
  1163.  
  1164. #nav_app_ipchat .ipsBadge { position: absolute; }
  1165.  
  1166. #ajax_loading {
  1167. background: #000;
  1168. color: #fff;
  1169. text-align: center;
  1170. padding: 5px 0 8px;
  1171. width: 8%;
  1172. top: 0px;
  1173. left: 46%;
  1174. -moz-border-radius: 0 0 5px 5px;
  1175. -webkit-border-bottom-right-radius: 5px;
  1176. -webkit-border-bottom-left-radius: 5px;
  1177. border-radius: 0 0 5px 5px;
  1178. z-index: 10000;
  1179. position: fixed;
  1180. -moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
  1181. -webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
  1182. box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
  1183. opacity:0.6;
  1184. }
  1185.  
  1186. #ipboard_body.redirector {
  1187. width: 500px;
  1188. margin: 150px auto 0 auto;
  1189. }
  1190.  
  1191. #ipboard_body.minimal { padding-top: 40px; }
  1192. #ipboard_body.minimal #ipbwrapper{
  1193. width: 900px;
  1194. margin: 0 auto;
  1195. }
  1196. #ipboard_body.minimal #content {
  1197. -moz-border-radius: 3px;
  1198. -webkit-border-radius: 3px;
  1199. border-radius: 3px;
  1200. padding: 20px 30px;
  1201. margin-bottom: 10px;
  1202. }
  1203. #ipboard_body.minimal h1 { font-size: 32px; }
  1204. #ipboard_body.minimal .ipsType_pagedesc { font-size: 16px; }
  1205.  
  1206. .progress_bar {
  1207. background-color: #363636;
  1208. border: 1px solid #535353;
  1209. }
  1210.  
  1211. .progress_bar span {
  1212. background: #535353 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px;
  1213. color: #fff;
  1214. font-size: 0em;
  1215. font-weight: bold;
  1216. text-align: center;
  1217. text-indent: -2000em;
  1218. height: 10px;
  1219. display: block;
  1220. overflow: hidden;
  1221. }
  1222.  
  1223. .progress_bar.limit span {
  1224. background: #b13c3c url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px;
  1225. }
  1226.  
  1227. .progress_bar span span {
  1228. display: none;
  1229. }
  1230.  
  1231. .progress_bar.user_warn {
  1232. margin: 0 auto;
  1233. width: 80%;
  1234. }
  1235.  
  1236. .progress_bar.user_warn span {
  1237. height: 6px;
  1238. }
  1239.  
  1240. .progress_bar.topic_poll {
  1241. margin-top: 2px;
  1242. width: 40%;
  1243. }
  1244.  
  1245. li.rating a {
  1246. outline: 0;
  1247. }
  1248.  
  1249. .antispam_img { margin: 0 3px 5px 0; }
  1250.  
  1251. span.error {
  1252. color: #ad2930;
  1253. font-weight: bold;
  1254. clear: both;
  1255. }
  1256.  
  1257. #recaptcha_widget_div { max-width: 350px; }
  1258. #recaptcha_table { border: 0 !important; }
  1259.  
  1260. /************************************************************************/
  1261. /* GENERIC REPEATED STYLES */
  1262. /* Inline lists */
  1263. .tab_filters ul, .tab_filters li, fieldset.with_subhead span.desc, fieldset.with_subhead label,.user_controls li {
  1264. display: inline;
  1265. }
  1266.  
  1267. /* Utility styles */
  1268. .right { float: right; }
  1269. .left { float: left; }
  1270. .hide { display: none; }
  1271. .short { text-align: center; }
  1272. .clear { clear: both; }
  1273. .clearfix:after { content: ".";display: block;height: 0;clear: both;visibility: hidden; overflow: hidden;}
  1274. .faded { opacity: 0.5 }
  1275. .clickable { cursor: pointer; }
  1276. .reset_cursor { cursor: default; }
  1277.  
  1278. /* Bullets */
  1279. .bullets ul, .bullets ol,
  1280. ul.bullets, ol.bullets {
  1281. list-style: disc;
  1282. margin-left: 30px;
  1283. line-height: 150%;
  1284. list-style-image: none;
  1285. }
  1286.  
  1287. .bullets li{ padding: 2px; }
  1288.  
  1289. /* Rounded corners */
  1290. #user_navigation #new_msg_count, .rounded {
  1291. -moz-border-radius: 3px;
  1292. -webkit-border-radius: 3px;
  1293. border-radius: 3px;
  1294. }
  1295.  
  1296. .desc, .desc.blend_links a, p.posted_info {
  1297. font-size: 11px;
  1298. color: #898989;
  1299. }
  1300.  
  1301. .desc.lighter, .desc.lighter.blend_links a {
  1302. color: #646464;
  1303. }
  1304.  
  1305. /* Cancel */
  1306. .cancel {
  1307. font-size: 0.9em;
  1308. font-weight: bold;
  1309. }
  1310.  
  1311. .cancel, .cancel:hover{
  1312. color: #ad2930;
  1313. }
  1314.  
  1315. /* Moderation */
  1316. em.moderated {
  1317. font-size: 11px;
  1318. font-style: normal;
  1319. font-weight: bold;
  1320. }
  1321.  
  1322. /* Positive/Negative */
  1323. .positive { color: #6f8f52; }
  1324. .negative { color: #c7172b; }
  1325.  
  1326. /* Search highlighting */
  1327. .searchlite
  1328. {
  1329. background-color: yellow;
  1330. color: red;
  1331. font-size:14px;
  1332. }
  1333.  
  1334. /* Users posting */
  1335. .activeuserposting {
  1336. font-style: italic;
  1337. }
  1338.  
  1339. /************************************************************************/
  1340. /* COLUMN WIDTHS FOR TABLES */
  1341. /* col_f = forums; col_c = categories; col_m = messenger; col_n = notifications */
  1342.  
  1343. .col_f_post { width: 250px !important; }
  1344. .is_mod .col_f_post { width: 210px !important; }
  1345.  
  1346. td.col_c_post {
  1347. padding-top: 10px !important;
  1348. width: 250px;
  1349. }
  1350.  
  1351. .col_f_icon {
  1352. padding: 0 0 0 3px !important;
  1353. width: 24px !important;
  1354. text-align: center;
  1355. vertical-align: middle;
  1356. }
  1357.  
  1358. .col_n_icon {
  1359. vertical-align: middle;
  1360. width: 24px;
  1361. padding: 0 !important;
  1362. }
  1363.  
  1364. .col_f_views, .col_m_replies {
  1365. width: 100px !important;
  1366. text-align: right;
  1367. white-space: nowrap;
  1368. }
  1369.  
  1370. .col_f_mod, .col_m_mod, .col_n_mod { width: 40px; text-align: right; }
  1371. .col_f_preview {
  1372. width: 20px !important;
  1373. text-align: right;
  1374. }
  1375.  
  1376. .col_c_icon { padding: 10px 2px 10px 8px !important; width: 33px; vertical-align: middle; }
  1377. .col_c_post .ipsUserPhoto { margin-top: 3px; }
  1378.  
  1379. .col_n_date { width: 250px; }
  1380. .col_m_photo, .col_n_photo { width: 30px; }
  1381. .col_m_mod { text-align: right; }
  1382. .col_r_icon { width: 3%; }
  1383. .col_f_topic, .col_m_subject { width: 49%; }
  1384. .col_f_starter, .col_r_total, .col_r_comments { width: 10%; }
  1385. .col_m_date, .col_r_updated, .col_r_section { width: 18%; }
  1386. .col_c_stats { width: 15%; text-align: right; }
  1387. .col_c_forum { width: auto; }
  1388. .col_mod, .col_r_mod { width: 3%; }
  1389. .col_r_title { width: 26%; }
  1390.  
  1391. /*.col_c_forum, .col_c_stats, .col_c_icon, .col_c_post { vertical-align: top; }*/
  1392.  
  1393. /************************************************************************/
  1394. /* TABLE STYLES */
  1395.  
  1396. table.ipb_table {
  1397. width: 100%;
  1398. line-height: 1.3;
  1399. }
  1400.  
  1401. table.ipb_table td {
  1402. padding: 10px;
  1403. }
  1404.  
  1405. table.ipb_table tr.unread h4 { font-weight: bold; }
  1406. table.ipb_table tr.highlighted td { border-bottom: 0; }
  1407.  
  1408. table.ipb_table th {
  1409. font-size: 11px;
  1410. font-weight: bold;
  1411. padding: 8px 6px;
  1412. }
  1413.  
  1414. .last_post { margin-left: 45px; }
  1415. .last_post, .col_c_stats, .col_f_views, .line_height, .ipsList_withminiphoto .list_content{ line-height: 18px; }
  1416. #user_notifications_link_menucontent .list_content{ line-height: 130%; }
  1417. .col_c_post .ipsUserPhotoLink{ margin-top: -1px; }
  1418. .forum_desc{ padding-top: 5px; }
  1419.  
  1420. table.ipb_table h4,
  1421. table.ipb_table .topic_title {
  1422. font-size: 12px;
  1423. display: inline-block;
  1424. }
  1425.  
  1426. table.ipb_table .unread .topic_title { font-weight: bold; }
  1427. table.ipb_table .ipsModMenu { visibility: hidden; }
  1428. table.ipb_table tr:hover .ipsModMenu, table.ipb_table tr .ipsModMenu.menu_active { visibility: visible; }
  1429.  
  1430. #announcements h4 { display: inline; }
  1431. #announcements td { }
  1432. .announcement img{ margin-right: 4px; }
  1433.  
  1434. .forum_data {
  1435. font-size: 11px;
  1436. color: #5c5c5c;
  1437. display: inline-block;
  1438. white-space: nowrap;
  1439. margin: 0px 0 0 8px;
  1440. }
  1441.  
  1442. .desc_more {
  1443. background: url('{style_images_url}/desc_more.png') no-repeat top;
  1444. display: inline-block;
  1445. width: 13px; height: 13px;
  1446. text-indent: -2000em;
  1447. }
  1448. .desc_more:hover { background-position: bottom; }
  1449.  
  1450. .category_block .ipb_table h4 { /*font-size: 15px; word-wrap: break-word;*/ }
  1451.  
  1452. table.ipb_table .subforums {
  1453. margin: 7px 0 3px 0px;
  1454. overflow: hidden;
  1455. }
  1456.  
  1457. table.ipb_table .subforums li{
  1458. background: url('{style_images_url}/subforum_nonew.png') no-repeat 0 50%;
  1459. padding: 0 15px 0 15px;
  1460. margin: 0;
  1461. float: left;
  1462. }
  1463.  
  1464. table.ipb_table .subforums li.unread { font-weight: bold; background-image: url('{style_images_url}/subforum_new.png'); }
  1465.  
  1466. table.ipb_table .expander {
  1467. visibility: hidden;
  1468. width: 16px;
  1469. height: 16px;
  1470. display: inline-block;
  1471. }
  1472. table.ipb_table tr:hover .expander { visibility: visible; opacity: 0.2; }
  1473. table.ipb_table td.col_f_preview { cursor: pointer; }
  1474. table.ipb_table tr td:hover .expander, .expander.open, .expander.loading { visibility: visible !important; opacity: 1; }
  1475. table.ipb_table .expander.closed { background: url('{style_images_url}/icon_expand_close.png') no-repeat 0 0; }
  1476. table.ipb_table .expander.open { background: url('{style_images_url}/icon_expand_close.png') no-repeat 0 -19px; }
  1477. table.ipb_table .expander.loading { background: url('{style_images_url}/loading.gif') no-repeat; }
  1478. table.ipb_table .preview td {
  1479. padding: 20px 10px 20px 29px;
  1480. z-index: 20000;
  1481. border-top: 0;
  1482. }
  1483.  
  1484. table.ipb_table .preview td > div {
  1485. line-height: 1.4;
  1486. position: relative;
  1487. }
  1488.  
  1489. table.ipb_table .preview td {
  1490. -webkit-box-shadow: 0px 4px 5px rgba(0,0,0,0.15);
  1491. -moz-box-shadow: 0px 4px 5px rgba(0,0,0,0.15);
  1492. box-shadow: 0px 4px 5px rgba(0,0,0,0.15);
  1493. }
  1494.  
  1495. .preview_col {
  1496. margin-left: 80px;
  1497. }
  1498.  
  1499. .preview_info {
  1500. padding: 5px;
  1501. background: rgba(0,0,0,0.08);
  1502. margin: -3px 0 3px;
  1503. }
  1504.  
  1505. table.ipb_table .mini_pagination { opacity: 0.5; }
  1506. table.ipb_table tr:hover .mini_pagination { opacity: 1; }
  1507.  
  1508. /************************************************************************/
  1509. /* LAYOUT SYSTEM */
  1510.  
  1511. .ipsLayout.ipsLayout_withleft { padding-left: 210px; }
  1512. .ipsBox.ipsLayout.ipsLayout_withleft { padding-left: 220px; }
  1513. .ipsLayout.ipsLayout_withright { padding-right: 210px; clear: left; }
  1514. .ipsBox.ipsLayout.ipsLayout_withright { padding-right: 220px; }
  1515. /* Panes */
  1516. .ipsLayout_content, .ipsLayout .ipsLayout_left, .ipsLayout_right { position: relative; }
  1517. .ipsLayout_content { width: 100%; float: left; }
  1518. .ipsLayout .ipsLayout_left { width: 200px; margin-left: -210px; float: left; }
  1519. .ipsLayout .ipsLayout_right { width: 200px; margin-right: -210px; float: right; }
  1520.  
  1521. /* Wider sidebars */
  1522. .ipsLayout_largeleft.ipsLayout_withleft { padding-left: 280px; }
  1523. .ipsBox.ipsLayout_largeleft.ipsLayout_withleft { padding-left: 290px; }
  1524. .ipsLayout_largeleft.ipsLayout .ipsLayout_left { width: 270px; margin-left: -285px; }
  1525. .ipsLayout_largeright.ipsLayout_withright { padding-right: 285px; }
  1526. .ipsBox.ipsLayout_largeright.ipsLayout_withright { padding-right: 290px; }
  1527. .ipsLayout_largeright.ipsLayout .ipsLayout_right { width: 275px; margin-right: -285px; }
  1528.  
  1529. /* Narrow sidebars */
  1530. .ipsLayout_smallleft.ipsLayout_withleft { padding-left: 150px; }
  1531. .ipsBox.ipsLayout_smallleft.ipsLayout_withleft { padding-left: 160px; }
  1532. .ipsLayout_smallleft.ipsLayout .ipsLayout_left { width: 140px; margin-left: -150px; }
  1533. .ipsLayout_smallright.ipsLayout_withright { padding-right: 150px; }
  1534. .ipsBox.ipsLayout_smallright.ipsLayout_withright { padding-right: 160px; }
  1535. .ipsLayout_smallright.ipsLayout .ipsLayout_right { width: 140px; margin-right: -150px; }
  1536.  
  1537. /* Tiny sidebar */
  1538. .ipsLayout_tinyleft.ipsLayout_withleft { padding-left: 50px; }
  1539. .ipsBox.ipsLayout_tinyleft.ipsLayout_withleft { padding-left: 60px; }
  1540. .ipsLayout_tinyleft.ipsLayout .ipsLayout_left { width: 40px; margin-left: -40px; }
  1541. .ipsLayout_tinyright.ipsLayout_withright { padding-right: 50px; }
  1542. .ipsBox.ipsLayout_tinyright.ipsLayout_withright { padding-right: 60px; }
  1543. .ipsLayout_tinyright.ipsLayout .ipsLayout_right { width: 40px; margin-right: -40px; }
  1544.  
  1545. /* Big sidebar */
  1546. .ipsLayout_bigleft.ipsLayout_withleft { padding-left: 330px; }
  1547. .ipsBox.ipsLayout_bigleft.ipsLayout_withleft { padding-left: 340px; }
  1548. .ipsLayout_bigleft.ipsLayout .ipsLayout_left { width: 320px; margin-left: -330px; }
  1549. .ipsLayout_bigright.ipsLayout_withright { padding-right: 330px; }
  1550. .ipsBox.ipsLayout_bigright.ipsLayout_withright { padding-right: 340px; }
  1551. .ipsLayout_bigright.ipsLayout .ipsLayout_right { width: 320px; margin-right: -330px; }
  1552.  
  1553. /* Even Wider sidebars */
  1554. .ipsLayout_hugeleft.ipsLayout_withleft { padding-left: 380px; }
  1555. .ipsBox.ipsLayout_hugeleft.ipsLayout_withleft { padding-left: 390px; }
  1556. .ipsLayout_hugeleft.ipsLayout .ipsLayout_left { width: 370px; margin-left: -380px; }
  1557. .ipsLayout_hugeright.ipsLayout_withright { padding-right: 380px; }
  1558. .ipsBox.ipsLayout_hugeright.ipsLayout_withright { padding-right: 390px; }
  1559. .ipsLayout_hugeright.ipsLayout .ipsLayout_right { width: 370px; margin-right: -380px; }
  1560.  
  1561. /************************************************************************/
  1562. /* NEW FORMS */
  1563.  
  1564. .ipsField .ipsField_title {
  1565. font-weight: bold;
  1566. font-size: 12px;
  1567. line-height: 1.6;
  1568. }
  1569.  
  1570. .ipsForm_required {
  1571. color: #ab1f39;
  1572. font-weight: bold;
  1573. }
  1574.  
  1575. .ipsForm_horizontal .ipsField_title {
  1576. float: left;
  1577. width: 185px;
  1578. padding-right: 15px;
  1579. padding-top: 3px;
  1580. text-align: right;
  1581. line-height: 1.8;
  1582. }
  1583.  
  1584. .ipsForm_horizontal .ipsField { margin-bottom: 15px; }
  1585. .ipsForm_horizontal .ipsField_content, .ipsForm_horizontal .ipsField_submit { margin-left: 200px; }
  1586. .ipsForm_horizontal .ipsField_checkbox { margin: 0 0 5px 200px; }
  1587. .ipsForm_horizontal .ipsField_select .ipsField_title { line-height: 1.6; }
  1588.  
  1589. .ipsForm_vertical .ipsField { margin-bottom: 10px; }
  1590. .ipsForm_vertical .ipsField_content { margin-top: 3px; }
  1591.  
  1592. .ipsForm .ipsField_checkbox .ipsField_content { margin-left: 25px; }
  1593. .ipsForm .ipsField_checkbox input { float: left; margin-top: 3px; }
  1594.  
  1595. .ipsField_primary input { font-size: 18px; }
  1596.  
  1597. .ipsForm_submit {
  1598. padding: 5px 10px;
  1599. text-align: right;
  1600. margin-top: 25px;
  1601. }
  1602.  
  1603. .ipsForm_right { text-align: right; }
  1604. .ipsForm_left { text-align: left; }
  1605. .ipsForm_center { text-align: center; }
  1606.  
  1607. /************************************************************************/
  1608. /* SETTINGS SCREENS */
  1609. .ipsSettings_pagetitle { font-size: 20px; margin-bottom: 5px; }
  1610. .ipsSettings { padding: 0 0px; }
  1611. .ipsSettings_section {
  1612. margin: 0 0 15px 0;
  1613. padding: 15px 0 0 0;
  1614. }
  1615.  
  1616. .ipsSettings_section > div { margin-left: 175px; }
  1617. .ipsSettings_section > div ul li { margin-bottom: 10px; }
  1618. .ipsSettings_section .desc { margin-top: 3px; }
  1619.  
  1620. .ipsSettings_sectiontitle {
  1621. font: bold 13px Helvetica, Arial, sans-serif;
  1622. width: 165px;
  1623. padding-left: 10px;
  1624. line-height: 18px;
  1625. float: left;
  1626. }
  1627.  
  1628. .ipsSettings_fieldtitle {
  1629. min-width: 100px;
  1630. margin-right: 10px;
  1631. font-size: 14px;
  1632. display: inline-block;
  1633. vertical-align: top;
  1634. padding-top: 3px;
  1635. }
  1636.  
  1637. /************************************************************************/
  1638. /* TOOLTIPS */
  1639.  
  1640. .ipsTooltip { padding: 5px; z-index: 25000;}
  1641. .ipsTooltip_inner {
  1642. padding: 8px;
  1643. background: #333333;
  1644. border: 1px solid #333333;
  1645. color: #fff;
  1646. -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.1) inset;
  1647. -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.1) inset;
  1648. box-shadow: 0px 2px 4px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.1) inset;
  1649. -moz-border-radius: 4px;
  1650. -webkit-border-radius: 4px;
  1651. border-radius: 4px;
  1652. font-size: 12px;
  1653. text-align: center;
  1654. max-width: 250px;
  1655. }
  1656. .ipsTooltip_inner a { color: #fff; }
  1657. .ipsTooltip_inner span { font-size: 11px; color: #d2d2d2 }
  1658. .ipsTooltip.top { background: url('{style_images_url}/stems/tooltip_top.png') no-repeat bottom center; }
  1659. .ipsTooltip.top_left { background-position: bottom left; }
  1660. .ipsTooltip.bottom { background: url('{style_images_url}/stems/tooltip_bottom.png') no-repeat top center; }
  1661. .ipsTooltip.left { background: url('{style_images_url}/stems/tooltip_left.png') no-repeat center right; }
  1662. .ipsTooltip.right { background: url('{style_images_url}/stems/tooltip_right.png') no-repeat center left; }
  1663.  
  1664. /************************************************************************/
  1665. /* AlertFlag */
  1666.  
  1667. .ipsHasNotifications {
  1668. padding: 0px 4px;
  1669. height: 12px;
  1670. line-height: 12px;
  1671. background: #cf2020;
  1672. color: #fff !important;
  1673. font-size: 9px;
  1674. text-align: center;
  1675. -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.1) inset;
  1676. -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.1) inset;
  1677. box-shadow: 0px 2px 4px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.1) inset;
  1678. -moz-border-radius: 2px;
  1679. -webkit-border-radius: 2px;
  1680. border-radius: 2px;
  1681. position: absolute;
  1682. top: 4px;
  1683. left: 3px;
  1684. }
  1685.  
  1686. .ipsHasNotifications_blank { display: none; }
  1687. #chat-tab-count.ipsHasNotifications { left: auto; top: 3px; right: 3px; text-shadow: none !important; }
  1688.  
  1689. /************************************************************************/
  1690. /* SIDEBAR STYLE */
  1691.  
  1692. .ipsSideMenu { padding: 10px 0; }
  1693. .ipsSideMenu h4 {
  1694. margin: 0 10px 5px 25px;
  1695. font-weight: bold;
  1696. color: #dddddd;
  1697. }
  1698.  
  1699. .ipsSideMenu ul {
  1700. margin-bottom: 20px;
  1701. }
  1702.  
  1703. .ipsSideMenu ul li {
  1704. font-size: 11px;
  1705. }
  1706.  
  1707. .ipsSideMenu ul li a {
  1708. padding: 5px 10px 5px 25px;
  1709. display: block;
  1710. }
  1711.  
  1712. .ipsSideMenu ul li a:hover{
  1713. background-color: rgba(0,0,0,0.03);
  1714. }
  1715.  
  1716. .ipsSideMenu ul li.active a {
  1717. background: #282828 url('{style_images_url}/icon_check_white.png') no-repeat 6px 8px;
  1718. color: #fff;
  1719. font-weight: bold;
  1720. }
  1721.  
  1722. /***************************************************************************/
  1723. /* WIZARDS */
  1724.  
  1725. .ipsSteps {
  1726. background: #2a2a2a;
  1727. border: 1px solid #515151;
  1728. height: 55px;
  1729. -webkit-border-radius: 3px;
  1730. -moz-border-radius: 3px;
  1731. border-radius: 3px;
  1732. }
  1733.  
  1734. .ipsSteps li:first-child{
  1735. -webkit-border-top-left-radius: 3px;
  1736. -webkit-border-bottom-left-radius: 3px;
  1737. -moz-border-radius: 3px 0px 0px 3px;
  1738. border-radius: 3px 0px 0px 3px;
  1739. }
  1740.  
  1741. .ipsSteps ul li {
  1742. float: left;
  1743. padding: 11px 33px 5px 18px;
  1744. color: #c3c3c3;
  1745. background-image: url('{style_images_url}/wizard_step.png');
  1746. background-repeat: no-repeat;
  1747. background-position: 100% -56px;
  1748. position: relative;
  1749. height: 39px;
  1750. text-shadow: rgba(0,0,0,0.4) 0px -1px 0px;
  1751. }
  1752.  
  1753. .ipsSteps .ipsSteps_active {
  1754. background-position: 100% 0;
  1755. color: #fff;
  1756. text-shadow: rgba(0,0,0,0.4) 0px -1px 0px;
  1757. }
  1758.  
  1759. .ipsSteps .ipsSteps_done { }
  1760. .ipsSteps_desc { font-size: 11px; }
  1761. .ipsSteps_arrow { display: none; }
  1762.  
  1763. .ipsSteps_title {
  1764. display: block;
  1765. font-size: 14px;
  1766. padding-bottom: 4px;
  1767. }
  1768.  
  1769. .ipsSteps_active .ipsSteps_arrow {
  1770. display: block;
  1771. position: absolute;
  1772. left: -23px;
  1773. top: 0;
  1774. width: 23px;
  1775. height: 55px;
  1776. background: url('{style_images_url}/wizard_step.png') no-repeat 0 -112px;
  1777. }
  1778.  
  1779. .ipsSteps ul li:first-child .ipsSteps_arrow { display: none !important; }
  1780.  
  1781. /************************************************************************/
  1782. /* VERTICAL TABS (profile etc.) */
  1783.  
  1784. .ipsVerticalTabbed { }
  1785.  
  1786. .ipsVerticalTabbed_content {
  1787. min-height: 400px;
  1788. }
  1789.  
  1790. .ipsVerticalTabbed_tabs > ul {
  1791. width: 149px !important;
  1792. margin-top: 10px;
  1793. border-top: 1px solid #393939;
  1794. border-left: 1px solid #393939;
  1795. }
  1796.  
  1797. .ipsVerticalTabbed_minitabs.ipsVerticalTabbed_tabs > ul { width: 40px !important; }
  1798.  
  1799. .ipsVerticalTabbed_tabs li {
  1800. background: #242424;
  1801. color: #808080;
  1802. border-bottom: 1px solid #393939;
  1803. font-size: 12px;
  1804. }
  1805.  
  1806. .ipsVerticalTabbed_tabs li a {
  1807. display: block;
  1808. padding: 10px 8px;
  1809. outline: 0;
  1810. color: #8d8d8d;
  1811. }
  1812.  
  1813. .ipsVerticalTabbed_tabs li a:hover {
  1814. background: #292929;
  1815. color: #c9c9c9;
  1816. }
  1817.  
  1818. .ipsVerticalTabbed_tabs li.active a {
  1819. width: 135px;
  1820. position: relative;
  1821. z-index: 8000;
  1822. background: #292929;
  1823. color: #fff;
  1824. font-weight: bold;
  1825. }
  1826.  
  1827. .ipsVerticalTabbed_minitabs.ipsVerticalTabbed_tabs li.active a {
  1828. width: 24px;
  1829. }
  1830.  
  1831. /************************************************************************/
  1832. /* 'LIKE' FUNCTIONS */
  1833.  
  1834. .ipsLikeBar { margin: 10px 0; font-size: 11px; }
  1835.  
  1836. .ipsLikeBar_info {
  1837. line-height: 22px;
  1838. background: #4d4d4d;
  1839. padding: 0 10px;
  1840. display: inline-block;
  1841. -moz-border-radius: 2px;
  1842. -webkit-border-radius: 2px;
  1843. border-radius: 2px;
  1844. }
  1845.  
  1846. .ipsLikeButton {
  1847. line-height: 22px;
  1848. padding: 0 7px 0 26px;
  1849. font-size: 11px;
  1850. display: inline-block;
  1851. -moz-border-radius: 2px;
  1852. -webkit-border-radius: 2px;
  1853. border-radius: 2px;
  1854. text-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
  1855. color: #fff !important;
  1856. }
  1857. .ipsLikeButton:hover { color: #fff !important; }
  1858.  
  1859. .ipsLikeButton.ipsLikeButton_enabled {
  1860. background: #424242 url('{style_images_url}/like_button.png') no-repeat 0 0;
  1861. /*border: 1px solid #bcbcbc;*/
  1862. }
  1863.  
  1864. .ipsLikeButton.ipsLikeButton_disabled {
  1865. background: #6c6c6c url('{style_images_url}/like_button.png') no-repeat 0 -23px;
  1866. /*border: 1px solid #a4a4a4;*/
  1867. }
  1868.  
  1869. /************************************************************************/
  1870. /* TAG LIST */
  1871.  
  1872. .ipsTag {
  1873. display: inline-block;
  1874. background: url('{style_images_url}/tag_bg.png');
  1875. height: 20px;
  1876. line-height: 20px;
  1877. padding: 0 7px 0 15px;
  1878. margin: 5px 5px 0 0;
  1879. font-size: 11px;
  1880. color: #fff !important;
  1881. text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
  1882. -moz-border-radius: 0 3px 3px 0;
  1883. -webkit-border-top-right-radius: 3px;
  1884. -webkit-border-bottom-right-radius: 3px;
  1885. border-radius: 0 3px 3px 0;
  1886. }
  1887.  
  1888. /************************************************************************/
  1889. /* TAG EDITOR STYLES */
  1890.  
  1891. .ipsTagBox_wrapper {
  1892. min-height: 18px;
  1893. width: 350px;
  1894. line-height: 1.3;
  1895. display: inline-block;
  1896. margin-bottom: 3px;
  1897. }
  1898.  
  1899. .ipsTagBox_hiddeninput { background: none transparent; color: #fff; }
  1900. .ipsTagBox_hiddeninput.inactive {
  1901. font-size: 11px;
  1902. min-width: 200px;
  1903. }
  1904.  
  1905. .ipsTagBox_wrapper input { border: 0px; outline: 0; }
  1906. .ipsTagBox_wrapper li { display: inline-block; }
  1907.  
  1908. .ipsTagBox_wrapper.with_prefixes li.ipsTagBox_tag:first-child {
  1909. background: #d7d7d7;
  1910. border-color: #e9e9e9;
  1911. color: #222;
  1912. text-shadow: none;
  1913. }
  1914.  
  1915. .ipsTagBox_tag {
  1916. padding: 2px 1px 2px 4px;
  1917. background: #4d4d4d;
  1918. border: 1px solid #595959;
  1919. margin: 0 3px 2px 0;
  1920. font-size: 11px;
  1921. -moz-border-radius: 2px;
  1922. -webkit-border-radius: 2px;
  1923. border-radius: 2px;
  1924. cursor: pointer;
  1925. }
  1926.  
  1927. .ipsTagBox_tag:hover {
  1928. border-color: #646464;
  1929. }
  1930.  
  1931. .ipsTagBox_tag.selected {
  1932. background: #797979 !important;
  1933. border-color: #a1a1a1 !important;
  1934. color: #fff !important;
  1935. }
  1936.  
  1937. .ipsTagBox_closetag {
  1938. margin-left: 2px;
  1939. display: inline-block;
  1940. padding: 0 3px;
  1941. color: #c7c7c7;
  1942. font-weight: bold;
  1943. }
  1944. .ipsTagBox_closetag:hover { color: #454545; }
  1945. .ipsTagBox_tag.selected .ipsTagBox_closetag { color: #424242; }
  1946. .ipsTagBox_tag.selected .ipsTagBox_closetag:hover { color: #2f2f2f; }
  1947. .ipsTagBox_wrapper.with_prefixes li.ipsTagBox_tag:first-child .ipsTagBox_closetag { color: #444; }
  1948. .ipsTagBox_wrapper.with_prefixes li.ipsTagBox_tag:first-child .ipsTagBox_closetag:hover { color: #111; }
  1949.  
  1950. .ipsTagBox_addlink {
  1951. font-size: 10px;
  1952. margin-left: 3px;
  1953. outline: 0;
  1954. }
  1955.  
  1956. .ipsTagBox_dropdown {
  1957. height: 100px;
  1958. overflow: scroll;
  1959. background: #fff;
  1960. border: 1px solid #dddddd;
  1961. -webkit-box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
  1962. -moz-box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
  1963. box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
  1964. z-index: 16000;
  1965. }
  1966.  
  1967. .ipsTagBox_dropdown li {
  1968. padding: 4px;
  1969. font-size: 12px;
  1970. cursor: pointer;
  1971. }
  1972. .ipsTagBox_dropdown li:hover {
  1973. background: #dbf3ff;
  1974. color: #003b71;
  1975. }
  1976.  
  1977. /************************************************************************/
  1978. /* TAG CLOUD */
  1979. .ipsTagWeight_1 { opacity: 1.0; }
  1980. .ipsTagWeight_2 { opacity: 0.9; }
  1981. .ipsTagWeight_3 { opacity: 0.8; }
  1982. .ipsTagWeight_4 { opacity: 0.7; }
  1983. .ipsTagWeight_5 { opacity: 0.6; }
  1984. .ipsTagWeight_6 { opacity: 0.5; }
  1985. .ipsTagWeight_7 { opacity: 0.4; }
  1986. .ipsTagWeight_8 { opacity: 0.3; }
  1987.  
  1988. /************************************************************************/
  1989. /* NEW FILTER BAR */
  1990.  
  1991. .ipsFilterbar li {
  1992. margin: 0px 15px 0px 0;
  1993. font-size: 11px;
  1994. }
  1995.  
  1996. .ipsFilterbar li a {
  1997. color: #fff;
  1998. opacity: 0.5;
  1999. text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
  2000. -webkit-transition: all 0.3s ease-in-out;
  2001. -moz-transition: all 0.3s ease-in-out;
  2002. }
  2003.  
  2004. .ipsFilterbar.bar.altbar li a { color: #244156; text-shadow: none; opacity: .8; }
  2005.  
  2006. .ipsFilterbar:hover li a { opacity: 0.8; }
  2007.  
  2008. .ipsFilterbar li a:hover {
  2009. color: #fff;
  2010. opacity: 1;
  2011. }
  2012.  
  2013. .ipsFilterbar li.active { opacity: 1; }
  2014.  
  2015. .ipsFilterbar li.active a, .ipsFilterbar.bar.altbar li.active a {
  2016. background: url('{style_images_url}/trans30.png') repeat;
  2017. background: rgba(0,0,0,0.3);
  2018. opacity: 1;
  2019. color: #fff;
  2020. padding: 4px 10px;
  2021. font-weight: bold;
  2022. -moz-border-radius: 10px;
  2023. -webkit-border-radius: 10px !important;
  2024. border-radius: 10px;
  2025. -webkit-box-shadow: inset 0px 1px 3px rgba(0,0,0,0.5), rgba(255,255,255,0.16) 0px 1px 0px, rgba(255,255,255,0.05) 0px 0px 0px 1px;
  2026. -moz-box-shadow: inset 0px 1px 3px rgba(0,0,0,0.5), rgba(255,255,255,0.16) 0px 1px 0px, rgba(255,255,255,0.05) 0px 0px 0px 1px;
  2027. box-shadow: inset 0px 1px 3px rgba(0,0,0,0.5), rgba(255,255,255,0.16) 0px 1px 0px, rgba(255,255,255,0.05) 0px 0px 0px 1px;
  2028. }
  2029.  
  2030. /************************************************************************/
  2031. /* POSTING FORM STYLES */
  2032. /* Additional form styles for posting forms */
  2033.  
  2034. .ipsPostForm { }
  2035.  
  2036. .ipsPostForm.ipsLayout_withright {
  2037. padding-right: 260px !important;
  2038. }
  2039.  
  2040. .ipsPostForm .ipsLayout_content {
  2041. z-index: 900;
  2042. -webkit-box-shadow: 2px 0px 4px rgba(0,0,0,0.1);
  2043. -moz-box-shadow: 2px 0px 4px rgba(0,0,0,0.1);
  2044. box-shadow: 2px 0px 4px rgba(0,0,0,0.1);
  2045. float: none;
  2046. }
  2047.  
  2048. .ipsPostForm .ipsLayout_right {
  2049. width: 250px;
  2050. margin-right: -251px;
  2051. border-left: 0;
  2052. z-index: 800;
  2053. }
  2054.  
  2055. .ipsPostForm_sidebar{ margin-top: 8px; }
  2056.  
  2057. .ipsPostForm_sidebar .ipsPostForm_sidebar_block.closed h3 {
  2058. background-image: url('{style_images_url}/folder_closed.png');
  2059. background-repeat: no-repeat;
  2060. background-position: 10px 9px;
  2061. padding-left: 26px;
  2062. margin-bottom: 2px;
  2063. }
  2064.  
  2065. /************************************************************************/
  2066. /* MEMBER LIST STYLES */
  2067. .ipsMemberList .ipsButton_secondary { opacity: 0.3; }
  2068. .ipsMemberList li:hover .ipsButton_secondary, .ipsMemberList tr:hover .ipsButton_secondary { opacity: 1; }
  2069. .ipsMemberList li .reputation { margin: 5px 10px 0 0; }
  2070. .ipsMemberList > li .ipsButton_secondary { margin-top: 15px; }
  2071. .ipsMemberList li .rating { display: inline; }
  2072.  
  2073. /************************************************************************/
  2074. /* COMMENT STYLES */
  2075. .ipsComment_wrap { margin-top: 10px; }
  2076. .border > .ipsComment_wrap, .ipsBox_container > .ipsComment_wrap{ margin: 0; }
  2077. .ipsComment_wrap .ipsLikeBar { margin: 0; }
  2078. .ipsComment_wrap input[type='checkbox'] { vertical-align: middle; }
  2079.  
  2080. .ipsComment {
  2081. padding: 10px;
  2082. }
  2083.  
  2084. .ipsComment_author, .ipsComment_reply_user {
  2085. width: 160px;
  2086. text-align: right;
  2087. padding: 0 10px;
  2088. float: left;
  2089. line-height: 1.3;
  2090. }
  2091.  
  2092. .ipsComment_author .ipsUserPhoto { margin-bottom: 5px; }
  2093.  
  2094. .ipsComment_comment {
  2095. margin-left: 190px !important;
  2096. line-height: 1.5;
  2097. }
  2098.  
  2099. .ipsComment_comment > div { min-height: 33px; }
  2100.  
  2101. .ipsComment_controls { margin-top: 10px; }
  2102. .ipsComment_controls > li { opacity: 0.2; }
  2103. .ipsComment:hover .ipsComment_controls > li, .ipsComment .ipsComment_controls > li.right { opacity: 1; }
  2104.  
  2105. /************************************************************************/
  2106. /* FLOATING ACTION STYLES (comment moderation, multiquote etc.) */
  2107. .ipsFloatingAction {
  2108. position: fixed;
  2109. right: 10px;
  2110. bottom: 10px;
  2111. padding: 10px;
  2112. z-index: 15000;
  2113. border: 4px solid #464646;
  2114. border: 4px solid rgba(0,0,0,0.75);
  2115. -moz-border-radius: 5px;
  2116. -webkit-border-radius: 5px;
  2117. border-radius: 5px;
  2118. -moz-box-shadow: 0px 3px 6px rgba(0,0,0,0.4);
  2119. -webkit-box-shadow: 0px 3px 6px rgba(0,0,0,0.4);
  2120. box-shadow: 0px 3px 6px rgba(0,0,0,0.4);
  2121. }
  2122.  
  2123. /************************************************************************/
  2124. /* FORM STYLES */
  2125.  
  2126. body#ipboard_body fieldset.submit,
  2127. body#ipboard_body p.submit {
  2128. padding: 15px 6px 15px 6px;
  2129. text-align: center;
  2130. }
  2131.  
  2132. .iframe{ outline: none; }
  2133.  
  2134. .input_text, .ipsTagBox_wrapper, textarea {
  2135. padding: 6px;
  2136. border: 1px solid #383838;
  2137. background: #292929;
  2138. color: #b7b7b7;
  2139. text-shadow: rgba(0,0,0,0.3) 0px -1px 0px;
  2140. -webkit-box-shadow: inset rgba(0,0,0,0.2) 0px 1px 4px;
  2141. -moz-box-shadow: inset rgba(0,0,0,0.2) 0px 1px 4px;
  2142. box-shadow: inset rgba(0,0,0,0.2) 0px 1px 4px;
  2143. }
  2144.  
  2145. textarea:focus, .input_text:focus {
  2146. outline: none;
  2147. background-color: #4b4b4b;
  2148. color: #f8f8f8;
  2149. border-color: #797979;
  2150. }
  2151.  
  2152. input.inactive, select.inactive, textarea.inactive { color: #939393; }
  2153.  
  2154. .input_text.error {
  2155. background: #883939;
  2156. border-color: #a95858;
  2157. color: #fff;
  2158. -webkit-box-shadow: none;
  2159. -moz-box-shadow: none;
  2160. box-shadow: none;
  2161. }
  2162. .input_text.accept {
  2163. border: 1px solid #383838;
  2164. background: #292929;
  2165. color: #fff;
  2166. -webkit-box-shadow: none;
  2167. -moz-box-shadow: none;
  2168. box-shadow: none;
  2169.  
  2170. }
  2171.  
  2172. input:-webkit-input-placeholder { color: #939393; }
  2173. input:-moz-placeholder { color: #939393; }
  2174.  
  2175. .input_submit {
  2176. text-decoration: none;
  2177. border-width: 1px;
  2178. border-style: solid;
  2179. border: 0;
  2180. padding: 5px 11px;
  2181. cursor: pointer;
  2182. }
  2183.  
  2184. a.input_submit{
  2185. padding: 7px 11px;
  2186. display: inline-block;
  2187. }
  2188.  
  2189. .input_submit.alt {
  2190. text-decoration: none;
  2191. }
  2192.  
  2193. p.field {
  2194. padding: 15px;
  2195. }
  2196.  
  2197. li.field {
  2198. padding: 5px;
  2199. margin-left: 5px;
  2200. }
  2201.  
  2202. li.field label,
  2203. li.field span.desc {
  2204. display: block;
  2205. }
  2206.  
  2207. li.field.error {
  2208. color: #ad2930;
  2209. }
  2210.  
  2211. li.field.error label {
  2212. font-weight: bold;
  2213. }
  2214.  
  2215. li.field.checkbox, li.field.cbox {
  2216. margin-left: 0;
  2217. }
  2218.  
  2219. li.field.checkbox .input_check,
  2220. li.field.checkbox .input_radio,
  2221. li.field.cbox .input_check,
  2222. li.field.cbox .input_radio {
  2223. margin-right: 10px;
  2224. vertical-align: middle;
  2225. }
  2226.  
  2227. li.field.checkbox label,
  2228. li.field.cbox label {
  2229. width: auto;
  2230. float: none;
  2231. display: inline;
  2232. }
  2233.  
  2234. li.field.checkbox p,
  2235. li.field.cbox p {
  2236. position: relative;
  2237. left: 245px;
  2238. display: block;
  2239. }
  2240.  
  2241. li.field.checkbox span.desc,
  2242. li.field.cbox span.desc {
  2243. padding-left: 27px;
  2244. margin-left: auto;
  2245. display: block;
  2246. }
  2247.  
  2248. /************************************************************************/
  2249. /* MESSAGE STYLES */
  2250.  
  2251. .message {
  2252. background: #424242 url('http://cstop.ro/forum/public/style_images/play/tactile_noise.png') repeat-x 0 -1px;
  2253. padding: 10px;
  2254. border: 1px solid #bcbcbc;
  2255. text-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
  2256. line-height: 1.6;
  2257. font-size: 12px;
  2258. -webkit-box-shadow: rgba(0,0,0,0.1) 0px 1px 3px;
  2259. -moz-box-shadow: rgba(0,0,0,0.1) 0px 1px 3px;
  2260. box-shadow: rgba(0,0,0,0.1) 0px 1px 3px;
  2261. }
  2262.  
  2263. .message,
  2264. .message a,
  2265. .message h3{
  2266. color: #eff6dd;
  2267. }
  2268.  
  2269. .message h3 {
  2270. padding: 0;
  2271. }
  2272.  
  2273. .message.error {
  2274. background-color: #872d2d;
  2275. border-color: #c15050;
  2276. }
  2277.  
  2278. .message.error,
  2279. .message.error a,
  2280. .message.error h3{
  2281. color: #f6dddd;
  2282. }
  2283.  
  2284. .message.error.usercp {
  2285. background-image: none;
  2286. padding: 4px;
  2287. float: right;
  2288. }
  2289.  
  2290. .message.unspecific {
  2291. background-color: #292929;
  2292. border-color: #393939;
  2293. margin: 0 0 10px 0;
  2294. clear: both;
  2295. }
  2296.  
  2297. .message.unspecific,
  2298. .message.unspecific a,
  2299. .message.unspecific h3{
  2300. color: #ededed;
  2301. }
  2302.  
  2303. .message a{ text-decoration: underline; }
  2304.  
  2305. /************************************************************************/
  2306. /* MENU & POPUP STYLES */
  2307.  
  2308. .ipbmenu_content, .ipb_autocomplete {
  2309. min-width: 85px;
  2310. z-index: 2000;
  2311. }
  2312.  
  2313. .ipbmenu_content{ white-space: nowrap; }
  2314.  
  2315. .ipbmenu_content li:last-child {
  2316. border-bottom: 0;
  2317. padding-bottom: 0px;
  2318. }
  2319.  
  2320. .ipbmenu_content li:first-child { padding-top: 0px; }
  2321. .ipbmenu_content.with_checks a { padding-left: 26px; }
  2322. .ipbmenu_content a .icon { margin-right: 10px; }
  2323. .ipbmenu_content a {
  2324. text-decoration: none;
  2325. text-align: left;
  2326. display: block;
  2327. padding: 6px 10px;
  2328. }
  2329. .ipbmenu_content.with_checks li.selected a {
  2330. background-image: url('{style_images_url}/icon_check.png');
  2331. background-repeat: no-repeat;
  2332. background-position: 7px 10px;
  2333. }
  2334.  
  2335. .popupWrapper {
  2336. background: url('{style_images_url}/trans60.png') repeat;
  2337. background: rgba(0,0,0,0.6);
  2338. padding: 8px;
  2339. -webkit-box-shadow: rgba(0,0,0,0.5) 0px 10px 20px;
  2340. -moz-box-shadow: rgba(0,0,0,0.5) 0px 10px 20px;
  2341. box-shadow: rgba(0,0,0,0.5) 0px 10px 20px;
  2342. -moz-border-radius: 5px;
  2343. -webkit-border-radius: 5px;
  2344. border-radius: 5px;
  2345. }
  2346.  
  2347. .popupInner {
  2348. width: 500px;
  2349. overflow: auto;
  2350. -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.4);
  2351. -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.4);
  2352. box-shadow: 0px 0px 3px rgba(0,0,0,0.4);
  2353. overflow-x: hidden;
  2354. }
  2355.  
  2356. .popupInner.black_mode {
  2357. background: #000;
  2358. color: #eee;
  2359. border: 3px solid #626262;
  2360. }
  2361.  
  2362. .popupInner.warning_mode {
  2363. border: 3px solid #7D1B1B;
  2364. }
  2365.  
  2366. .popupInner h3 {
  2367. border-bottom: 1px solid #2a2a2a;
  2368. text-shadow: rgba(0,0,0,0.8) 0px -1px 0px;
  2369. background: #222222 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 0;
  2370. padding: 8px 10px 9px;
  2371. font-size: 16px;
  2372. font-weight: 300;
  2373. }
  2374.  
  2375. .popupInner h3 a { color: #fff; }
  2376.  
  2377. .popupInner.black_mode h3 {
  2378. background-color: #595959;
  2379. color: #ddd;
  2380. }
  2381.  
  2382. .popupInner.warning_mode h3 {
  2383. background-color: #7D1B1B;
  2384. padding-top: 6px;
  2385. padding-bottom: 6px;
  2386. color: #fff;
  2387. }
  2388.  
  2389. .popupClose {
  2390. position: absolute;
  2391. right: 20px;
  2392. top: 20px;
  2393. }
  2394.  
  2395. .popupClose.light_close_button {
  2396. background: transparent url('{style_images_url}/close_popup_light.png') no-repeat top left;
  2397. opacity: 0.8;
  2398. width: 13px;
  2399. height: 13px;
  2400. top: 17px;
  2401. }
  2402.  
  2403. .popupClose.light_close_button img {
  2404. display: none;
  2405. }
  2406.  
  2407. .popup_footer {
  2408. padding: 15px;
  2409. position: absolute;
  2410. bottom: 0px;
  2411. right: 0px;
  2412. }
  2413.  
  2414. .popup_body {
  2415. padding: 10px;
  2416. }
  2417.  
  2418. .stem {
  2419. width: 31px;
  2420. height: 16px;
  2421. position: absolute;
  2422. }
  2423.  
  2424. .stem.topleft { background-image: url('{style_images_url}/stems/topleft.png'); }
  2425. .stem.topright { background-image: url('{style_images_url}/stems/topright.png'); }
  2426. .stem.bottomleft { background-image: url('{style_images_url}/stems/bottomleft.png'); }
  2427. .stem.bottomright { background-image: url('{style_images_url}/stems/bottomright.png'); }
  2428.  
  2429. .modal {
  2430. background-color: #3e3e3e;
  2431. }
  2432.  
  2433. .userpopup h3 { font-size: 17px; }
  2434. .userpopup h3, .userpopup .side + div { padding-left: 110px; }
  2435. .userpopup .side { position: absolute; margin-top: -40px; }
  2436. .userpopup .side .ipsButton_secondary {
  2437. display: block;
  2438. text-align: center;
  2439. margin-top: 5px;
  2440. max-width: 75px;
  2441. height: auto;
  2442. line-height: 1;
  2443. padding: 5px 10px;
  2444. white-space: normal;
  2445. }
  2446. .userpopup .user_controls { text-align: left; }
  2447. .userpopup .user_status { padding: 5px; margin-bottom: 5px; }
  2448. .userpopup .reputation {
  2449. display: block;
  2450. text-align: center;
  2451. margin-top: 5px;
  2452. }
  2453.  
  2454. .userpopup {
  2455. overflow: hidden;
  2456. position: relative;
  2457. font-size: 0.9em;
  2458. min-height: 200px;
  2459. }
  2460.  
  2461. .userpopup dl {
  2462. padding-bottom: 10px;
  2463. margin-bottom: 4px;
  2464. }
  2465.  
  2466. .info dt {
  2467. float: left;
  2468. font-weight: bold;
  2469. padding: 3px 6px;
  2470. clear: both;
  2471. width: 30%;
  2472. }
  2473.  
  2474. .info dd {
  2475. padding: 3px 6px;
  2476. width: 60%;
  2477. margin-left: 35%;
  2478. }
  2479.  
  2480. /************************************************************************/
  2481. /* BUTTONS STYLES */
  2482.  
  2483. .topic_buttons li {
  2484. float: right;
  2485. margin: 0 0 10px 10px;
  2486. }
  2487.  
  2488. .topic_buttons li.important a, .topic_buttons li.important span, .ipsButton .important,
  2489. .topic_buttons li a, .topic_buttons li span, .ipsButton {
  2490. background: #272727;
  2491. color: #fff;
  2492. text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
  2493. font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  2494. line-height: 32px;
  2495. height: 32x;
  2496. padding: 0 11px;
  2497. text-align: center;
  2498. min-width: 125px;
  2499. display: inline-block;
  2500. cursor: pointer;
  2501. position: relative;
  2502. overflow: hidden;
  2503. z-index: 1;
  2504. text-transform: uppercase;
  2505.  
  2506.  
  2507. }
  2508.  
  2509. .topic_buttons li.important a, .topic_buttons li.important span, .ipsButton .important, .ipsButton.important {
  2510. background: #8b1515 url('{style_images_url}/highlight_faint.png') repeat-x 0 0 !important;
  2511. /*border-color: #790f0f;*/
  2512. }
  2513.  
  2514. .topic_buttons li a:hover, .ipsButton:hover { background-color: #B53628;
  2515. color: #fff; }
  2516.  
  2517. .topic_buttons li a:active, .ipsButton:active{
  2518. position: relative;
  2519. top: 1px;
  2520. /*-webkit-box-shadow: inset rgba(0,0,0,0.3) 0px 1px 2px;
  2521. -moz-box-shadow: inset rgba(0,0,0,0.3) 0px 1px 2px;
  2522. box-shadow: inset rgba(0,0,0,0.3) 0px 1px 2px;*/
  2523. }
  2524.  
  2525. .topic_buttons li.non_button a {
  2526. background: transparent !important;
  2527. background-color: transparent !important;
  2528. border: 0;
  2529. box-shadow: none !important;
  2530. -moz-box-shadow: none !important;
  2531. -webkit-box-shadow: none !important;
  2532. text-shadow: none;
  2533. min-width: 0px;
  2534. color: #777777;
  2535. font-weight: normal;
  2536. padding-top: 1px;
  2537. padding-bottom: 1px;
  2538. }
  2539.  
  2540. .topic_buttons li.non_button a:active{ top: 0; }
  2541.  
  2542. .topic_buttons li.disabled a, .topic_buttons li.disabled span {
  2543. background: #191919 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 0;
  2544. box-shadow: none;
  2545. -moz-box-shadow: none;
  2546. -webkit-box-shadow: none;
  2547. text-shadow: none;
  2548. border: 0;
  2549. font-weight: 300;
  2550. color: #666666;
  2551. }
  2552.  
  2553. .topic_buttons li span { cursor: default !important; }
  2554.  
  2555. .ipsButton_secondary,
  2556. .bbc_spoiler_show,
  2557. .user_controls li a{
  2558. height: 26px;
  2559. line-height: 26px;
  2560. font-size: 11px;
  2561. padding: 0 10px;
  2562. border: 0;
  2563. background: #393939 url('{style_images_url}/highlight_faint.png') repeat-x 0 0;
  2564. /*border: 1px solid #d0d0d0;*/
  2565. /*-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.1), inset rgba(255,255,255,0.7) 0px 1px 0px;
  2566. -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.1), inset rgba(255,255,255,0.7) 0px 1px 0px;
  2567. box-shadow: 0px 1px 2px rgba(0,0,0,0.1), inset rgba(255,255,255,0.7) 0px 1px 0px;*/
  2568. -moz-border-radius: 2px;
  2569. -webkit-border-radius: 2px;
  2570. border-radius: 2px;
  2571. color: #fff;
  2572. text-shadow: rgba(0,0,0,0.8) 0px -1px 0px;
  2573. display: inline-block;
  2574. white-space: nowrap;
  2575. cursor: pointer;
  2576. }
  2577. .ipsButton_secondary a { color: #fff; }
  2578. .ipsButton_secondary:hover,
  2579. .bbc_spoiler_show:hover,
  2580. .user_controls li a:hover{
  2581. color: #fff;
  2582. background-color: #434343;
  2583. }
  2584.  
  2585. .ipsButton_secondary.important {
  2586. background: #ae3232 url('{style_images_url}/highlight_faint.png') repeat-x 0 0;
  2587. /*border: 1px solid #a22c2c;*/
  2588. color: #fbf4f4;
  2589. text-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
  2590. -webkit-box-shadow: none;
  2591. -moz-box-shadow: none;
  2592. box-shadow: none;
  2593. }
  2594. .ipsButton_secondary.important a { color: #fbf4f4; }
  2595. .ipsButton_secondary.important a:hover,
  2596. a.ipsButton_secondary.important:hover{
  2597. color: #fff;
  2598. background-color: #bb3c3c;
  2599. }
  2600.  
  2601. .ipsButton_secondary:active{
  2602. /*-webkit-box-shadow: inset rgba(0,0,0,0.15) 0px 1px 2px, rgba(255,255,255,0.5) 0px 1px 0px;
  2603. -moz-box-shadow: inset rgba(0,0,0,0.15) 0px 1px 2px, rgba(255,255,255,0.5) 0px 1px 0px;
  2604. box-shadow: inset rgba(0,0,0,0.15) 0px 1px 2px, rgba(255,255,255,0.5) 0px 1px 0px;*/
  2605. position: relative;
  2606. top: 1px;
  2607. }
  2608.  
  2609. .ipsButton_secondary img{ vertical-align: middle; margin-top: -1px; }
  2610.  
  2611. /* Used in post forms */
  2612. .ipsField.ipsField_checkbox.ipsButton_secondary { line-height: 18px; }
  2613. .ipsField.ipsField_checkbox.ipsButton_secondary input { margin-top: 6px }
  2614. .ipsField.ipsField_checkbox.ipsButton_secondary .ipsField_content { margin-left: 18px; }
  2615.  
  2616. .ipsButton_extra {
  2617. line-height: 22px;
  2618. height: 22px;
  2619. font-size: 11px;
  2620. margin-left: 5px;
  2621. color: #ddd;
  2622. }
  2623.  
  2624. .ipsButton_secondary.fixed_width{ min-width: 170px; }
  2625.  
  2626. .ipsButton.no_width { min-width: 0; }
  2627. .topic_controls { min-height: 30px; overflow: hidden; }
  2628.  
  2629. ul.post_controls {
  2630. font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  2631. margin: 0;
  2632. background: #222222;
  2633. border-top: 1px solid #2b2b2b;
  2634. margin-top: 10px;
  2635. padding: 7px;
  2636. clear: both;
  2637. overflow: hidden;
  2638. }
  2639.  
  2640. ul.post_controls li {
  2641. font-size: 11px;
  2642. float: right;
  2643. margin: 0;
  2644. padding: 0;
  2645. }
  2646.  
  2647. ul.post_controls li.report, ul.post_controls li.top{ float: left; }
  2648.  
  2649. ul.post_controls a {
  2650. background: #282828 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 0;
  2651. -moz-box-shadow: rgba(0,0,0,0.15) 0px 1px 3px;
  2652. -webkit-box-shadow: rgba(0,0,0,0.15) 0px 1px 3px;
  2653. box-shadow: rgba(0,0,0,0.15) 0px 1px 3px;
  2654. color: #fff;
  2655. text-shadow: rgba(0,0,0,0.4) 0px -1px 0px;
  2656. height: 30px;
  2657. line-height: 30px;
  2658. padding: 0 10px;
  2659. text-decoration: none;
  2660. margin-left: 4px;
  2661. display: block;
  2662. }
  2663.  
  2664. ul.post_controls a:hover { background-color: #B53628;
  2665. color: #fff; }
  2666.  
  2667. ul.post_controls a.ipsButton_secondary {
  2668. height: 24px;
  2669. line-height: 24px;
  2670. }
  2671.  
  2672. ul.post_controls li.multiquote.selected a {
  2673. background: #242424 url('{style_images_url}/topic_button_disabled.png') repeat-x 50% -8px;
  2674. color: #fff;
  2675. }
  2676.  
  2677. /*.post_block .post_controls li a { opacity: 0.2; }
  2678. .post_block .post_controls li a.ipsButton_secondary { opacity: 1; }
  2679. .post_block:hover .post_controls li a { opacity: 1; }*/
  2680.  
  2681. .post_body ul.post_controls{ margin: 0 -12px -12px -187px; }
  2682. .column_view .post_body ul.post_controls{ margin-left: -198px; }
  2683. .post_block.no_sidebar .post_body ul.post_controls{ margin-left: 0px; }
  2684. .post_body ul.post_controls img{ vertical-align: middle; margin: -3px 2px 0px -3px; position: relative; }
  2685. .hide_signature, .sigIconStay { float: right; }
  2686. .post_block:hover .signature a.hide_signature, .sigIconStay {
  2687. background: transparent url('{style_images_url}/cross_sml.png') no-repeat top right;
  2688. width: 13px;
  2689. height: 13px;
  2690. opacity: 0.6;
  2691. position: absolute;
  2692. right: 10px;
  2693. }
  2694.  
  2695. /************************************************************************/
  2696. /* PAGINATION STYLES */
  2697.  
  2698. .pagination { padding: 5px 0; line-height: 22px; }
  2699. .pagination.no_numbers .page { display: none; }
  2700. .pagination .pages { text-align: center; }
  2701. .pagination .back { margin-right: 5px; }
  2702. /*.pagination .back li { margin: 0 2px 0 0; }*/
  2703. .pagination .forward { margin-left: 5px; }
  2704. /*.pagination .forward li { margin: 0 0 0 2px; }*/
  2705.  
  2706. .pagination a{ color: #eeeeee; }
  2707.  
  2708. .pagination .page a,
  2709. .pagination .back a,
  2710. .pagination .forward a {
  2711. background: #424242 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 0;
  2712. /*border: 1px solid #d6d6d6;*/
  2713. color: #eeeeee;
  2714. text-shadow: rgba(0,0,0,0.8) 0px -1px 0px;
  2715. -moz-border-radius: 3px;
  2716. -webkit-border-radius: 3px;
  2717. border-radius: 3px;
  2718. display: inline-block;
  2719. padding: 1px 8px;
  2720. text-transform: lowercase;
  2721. font-size: 11px;
  2722. font-weight: normal;
  2723. }
  2724.  
  2725. .pagination .page a:hover,
  2726. .pagination .back a:hover,
  2727. .pagination .forward a:hover {
  2728. background-color: #505050;
  2729. color: #fff;
  2730. }
  2731.  
  2732. .pagination .disabled a {
  2733. opacity: 0.4;
  2734. display: none;
  2735. }
  2736.  
  2737. .pagination .pages {
  2738. font-size: 11px;
  2739. }
  2740.  
  2741. .pagination .pages a,
  2742. .pagejump {
  2743. display: inline-block;
  2744. }
  2745.  
  2746. .pagination .pagejump a { padding: 0px 7px; }
  2747.  
  2748. .pagination .pagejump a:hover {
  2749. text-decoration: underline;
  2750. }
  2751.  
  2752. .pagination li { margin: 0; }
  2753.  
  2754. .pagination .pages li.active {
  2755. background: #bcbcbc url('{style_images_url}/highlight.png') repeat-x 0 0;
  2756. color: #fff;
  2757. padding: 1px 8px;
  2758. text-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
  2759. -moz-border-radius: 3px;
  2760. -webkit-border-radius: 3px;
  2761. border-radius: 3px;
  2762. cursor: default;
  2763. }
  2764.  
  2765. .pagination.no_pages span {
  2766. color: #bbbbbb;
  2767. display: inline-block;
  2768. line-height: 20px;
  2769. height: 20px;
  2770. }
  2771.  
  2772. ul.mini_pagination {
  2773. font-size: 0.8em;
  2774. display: inline;
  2775. margin-left: 7px;
  2776. }
  2777.  
  2778. ul.mini_pagination li a {
  2779. background: #353535 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 0;
  2780. color: #fff;
  2781. padding: 2px 6px;
  2782. -webkit-border-radius: 2px;
  2783. -moz-border-radius: 2px;
  2784. border-radius: 2px;
  2785. }
  2786.  
  2787. ul.mini_pagination li a:hover {
  2788. background: #424242 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 0;
  2789. }
  2790.  
  2791. ul.mini_pagination li {
  2792. display: inline;
  2793. margin: 0px 1px 0px 0px;
  2794. }
  2795.  
  2796. /************************************************************************/
  2797. /* MODERATION & FILTER STYLES */
  2798.  
  2799. .moderation_bar {
  2800. text-align: right;
  2801. padding: 8px 10px;
  2802. }
  2803.  
  2804. .moderation_bar.with_action {
  2805. background-image: url('{style_images_url}/topic_mod_arrow.png');
  2806. background-repeat: no-repeat;
  2807. background-position: right center;
  2808. padding-right: 35px;
  2809. }
  2810.  
  2811. /************************************************************************/
  2812. /* AUTHOR INFO (& RELATED) STYLES */
  2813.  
  2814. .column_view .post_wrap{
  2815. background: #252525;
  2816. }
  2817.  
  2818. .column_view .post_body{
  2819. border-left: 1px solid #323232;
  2820. }
  2821.  
  2822. .author_info {
  2823. width: 166px;
  2824. float: left;
  2825. font-size: 12px;
  2826. text-align: center;
  2827. padding: 10px 10px;
  2828. line-height: 150%;
  2829. }
  2830.  
  2831. .author_info .group_title {
  2832. color: #dddddd;
  2833. margin-top: 5px;
  2834. }
  2835.  
  2836. .author_info .member_title { margin-bottom: 5px; word-wrap: break-word; }
  2837. .author_info .group_icon { margin-bottom: 3px; }
  2838.  
  2839. .custom_fields {
  2840. color: #bbbbbb;
  2841. margin-top: 8px;
  2842. }
  2843.  
  2844. .custom_fields .ft {
  2845. color: #aaaaaa;
  2846. margin-right: 3px;
  2847. }
  2848.  
  2849. .custom_fields .fc {
  2850. word-wrap: break-word;
  2851. }
  2852.  
  2853. .user_controls {
  2854. text-align: center;
  2855. margin: 6px 0;
  2856. }
  2857.  
  2858. .user_controls li a {
  2859. padding: 0 5px;
  2860. }
  2861.  
  2862. /************************************************************************/
  2863. /* BOARD INDEX STYLES */
  2864.  
  2865. #board_index #categories { overflow: hidden; } /* opera fix */
  2866.  
  2867. #board_index { position: relative; }
  2868. #board_index.no_sidebar { padding-right: 0px; }
  2869. #board_index.force_sidebar { padding-right: 290px; }
  2870.  
  2871. #toggle_sidebar {
  2872. position: absolute;
  2873. right: -5px;
  2874. top: -12px;
  2875. z-index: 8000;
  2876. background: #eeeeee;
  2877. padding: 3px 7px;
  2878. -webkit-border-radius: 3px;
  2879. -moz-border-radius: 3px;
  2880. border-radius: 3px;
  2881. color: #333;
  2882. opacity: 0;
  2883. -webkit-transition: all 0.4s ease-in-out;
  2884. -moz-transition: all 0.4s ease-in-out;
  2885. }
  2886. #index_stats:hover + #toggle_sidebar, #board_index.no_sidebar #toggle_sidebar { opacity: 0.1; }
  2887. #toggle_sidebar:hover { opacity: 1 !important; }
  2888.  
  2889. .ipsSideBlock,
  2890. .general_box{
  2891. background: #292929;
  2892. border: 1px solid #454545;
  2893. margin-bottom: 10px;
  2894. }
  2895.  
  2896. .ipsSideBlock{
  2897. padding: 10px;
  2898. }
  2899.  
  2900. .bar,
  2901. .ipsSideBlock h3,
  2902. .general_box h3{
  2903.  
  2904. background: #222 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 0;
  2905. color: #757575;
  2906. text-shadow: rgba(0,0,0,0.25) 0px -1px 0px;
  2907. padding: 12px;
  2908. font-size: 12px;
  2909. font-weight: 300;
  2910. overflow: hidden;
  2911. text-transform: uppercase;
  2912. border-left: 1px solid rgba(255,255,255,0.1);
  2913. border-right: 1px solid rgba(255,255,255,0.1);
  2914. border-top: 1px solid rgba(255,255,255,0.1);
  2915. border-bottom: 1px solid rgba(255,255,255,0.1);
  2916. }
  2917.  
  2918.  
  2919. .bar{ border-top: 1px solid #393939; }
  2920.  
  2921. .ipsPostForm_sidebar .ipsPostForm_sidebar_block:first-of-type h3.bar, .bar.noTopBorder{ border-top: 0; }
  2922.  
  2923. .ipsSideBlock h3, .ipsSideBlock h3 a, .general_box h3, .general_box h3 a, .bar, .bar a{ color: #fff; }
  2924.  
  2925. .ipsSideBlock h3{
  2926. margin: -10px -10px 10px -10px;
  2927. }
  2928.  
  2929. .ipsSideBlock h3 .mod_links {
  2930. color: #fff;
  2931. opacity: 0.0;
  2932. display: inline-block;
  2933. padding: 1px 4px 3px 4px;
  2934. margin-top: -2px;
  2935. text-shadow: none;
  2936. background: url('{style_images_url}/trans40.png') repeat;
  2937. background: rgba(0,0,0,0.4);
  2938. -webkit-border-radius: 3px;
  2939. -moz-border-radius: 3px;
  2940. border-radius: 3px;
  2941. -webkit-box-shadow: inset rgba(0,0,0,0.6) 0px 1px 2px;
  2942. -moz-box-shadow: inset rgba(0,0,0,0.6) 0px 1px 2px;
  2943. box-shadow: inset rgba(0,0,0,0.6) 0px 1px 2px;
  2944. }
  2945. .ipsSideBlock h3:hover .mod_links { opacity: 1; }
  2946.  
  2947. .sideVerticalList, #index_stats .ipsList_withminiphoto{ margin: -10px; }
  2948. #index_stats .ipsList_withminiphoto img{ margin-bottom: -3px; }
  2949. .sideVerticalList.with_margin{ margin-bottom: 10px; }
  2950.  
  2951. .status_list .status_list { margin: 10px 0 0 35px; }
  2952. .status_list p.index_status_update { line-height: 120%; margin:4px 0px; }
  2953. .status_list li { position: relative; }
  2954. .status_reply {
  2955. margin-top: 8px;
  2956. }
  2957.  
  2958. .status_list li .mod_links {
  2959. opacity: 0.1;
  2960. -webkit-transition: all 0.4s ease-in-out;
  2961. -moz-transition: all 0.4s ease-in-out;
  2962. }
  2963. .status_list li:hover .mod_links { opacity: 1; }
  2964.  
  2965. /* board stats */
  2966. #board_stats ul {
  2967. text-align: center;
  2968. background: #282828 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 0;
  2969. -moz-box-shadow: rgba(0,0,0,0.15) 0px 1px 3px;
  2970. -webkit-box-shadow: rgba(0,0,0,0.15) 0px 1px 3px;
  2971. box-shadow: rgba(0,0,0,0.15) 0px 1px 3px;
  2972. color: #646464;
  2973. font-size: 11px;
  2974. border: 1px solid #494949;
  2975. font-weight: normal;
  2976. font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
  2977. text-transform: uppercase;
  2978. text-shadow: rgba(0,0,0,0.4) 0px -1px 0px;
  2979. }
  2980. #board_stats li { margin-right: 20px; }
  2981. #board_stats .value {
  2982. display: inline-block;
  2983. background: #232323;
  2984. border-left: 1px solid #393939;
  2985. border-right: 1px solid #393939;
  2986. color: #bcbcbc;
  2987. font-size: 11px;
  2988. font-weight: normal;
  2989. font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
  2990. text-shadow: rgba(0,0,0,0.4) 0px -1px 0px;
  2991. padding: 11px 6px;
  2992. margin-right: 3px;
  2993. }
  2994.  
  2995. .statistics {
  2996. margin: 20px 0 0 0;
  2997. padding: 8px;
  2998. line-height: 1.3;
  2999. overflow: hidden;
  3000. border: 1px solid #393939;
  3001. }
  3002.  
  3003. .statistics_head {
  3004. border-bottom: 1px solid #393939;
  3005. border-top: 1px solid #393939;
  3006. text-shadow: rgba(0,0,0,0.8) 0px -1px 0px;
  3007. background: #222222 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px;
  3008. font-size: 11px;
  3009. font-weight: bold;
  3010. padding: 8px;
  3011. margin: -8px -8px 8px -8px;
  3012. }
  3013.  
  3014. .statistics_head,
  3015. .statistics_head a{
  3016. color: #fff;
  3017. }
  3018.  
  3019. .statistics .statistics_head:first-of-type{
  3020. border-top: 0;
  3021. }
  3022.  
  3023. .statistics .statistics_head:not(:first-of-type){
  3024. margin-top: 0;
  3025. }
  3026.  
  3027. #stat_links{ font-weight: normal; }
  3028. #stat_links a{ margin: 0 5px; }
  3029.  
  3030. .friend_list ul li,
  3031. #top_posters li {
  3032. text-align: center;
  3033. padding: 8px 0 0 0;
  3034. margin: 5px 0 0 0;
  3035. min-width: 80px;
  3036. height: 80px;
  3037. float: left;
  3038. }
  3039.  
  3040. .friend_list ul li span.name,
  3041. #top_posters li span.name {
  3042. font-size: 0.95em;
  3043. }
  3044.  
  3045. .friend_list ul li .ipsUserPhoto{ margin-bottom: 5px; }
  3046.  
  3047. #hook_watched_items ul li {
  3048. padding: 8px;
  3049. }
  3050.  
  3051. body#ipboard_body #hook_watched_items fieldset.submit {
  3052. padding: 8px;
  3053. }
  3054.  
  3055. #hook_birthdays .list_content {
  3056. padding-top: 8px;
  3057. }
  3058.  
  3059. #hook_calendar .ipsBox_container { padding: 10px; }
  3060. #hook_calendar td, #hook_calendar th { text-align: center; }
  3061. #hook_calendar th { font-weight: bold; padding: 5px 0;}
  3062.  
  3063. /************************************************************************/
  3064. /* FORUM VIEW (& RELATED) STYLES */
  3065.  
  3066. #more_topics {
  3067. text-align: center;
  3068. font-weight: bold;
  3069. background: #222222 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px;
  3070. }
  3071. #more_topics a, #more_topics span { display: block; padding: 10px 0;}
  3072. #more_topics, .dynamic_update { border-top: 1px dashed #393939; }
  3073.  
  3074. .topic_preview,
  3075. ul.topic_moderation {
  3076. margin-top: -2px;
  3077. z-index: 300;
  3078. }
  3079. ul.topic_moderation li {
  3080. float: left;
  3081. }
  3082.  
  3083. .topic_preview a,
  3084. ul.topic_moderation li a {
  3085. padding: 0 3px;
  3086. display: block;
  3087. float: left;
  3088. }
  3089.  
  3090. span.mini_rate {
  3091. margin-right: 12px;
  3092. display: inline-block;
  3093. }
  3094.  
  3095. img.mini_rate {
  3096. margin-right: -5px;
  3097. }
  3098.  
  3099. /************************************************************************/
  3100. /* TOPIC VIEW (& RELATED) STYLES */
  3101.  
  3102. body .ip { }
  3103. span.post_id { margin-left: 15px; }
  3104. input.post_mod { margin:12px 5px 0px 10px; }
  3105.  
  3106. .signature {
  3107. clear: right;
  3108. color: #bcbcbc;
  3109. font-size: 0.9em;
  3110. border-top: 1px solid #323232;
  3111. padding: 10px;
  3112. margin: 6px 0 4px;
  3113. position: relative;
  3114. }
  3115.  
  3116. .signature a { text-decoration: underline; }
  3117.  
  3118. .post_body .signature{ margin-left: -12px; margin-right: -12px; }
  3119.  
  3120. .post_block {
  3121. position: relative;
  3122. }
  3123.  
  3124. .post_block.no_sidebar {
  3125. background-image: none;
  3126. }
  3127. .post_block.solved h3,
  3128. .answerBadgeInPost,
  3129. .horizontalView .post_block.solved .author_info {
  3130. background: #4a4a4a;
  3131. text-shadow: rgba(0,0,0,0.5) 0px -1px 0px;
  3132. border: 1px solid #777;
  3133. }
  3134.  
  3135. .post_block.solved h3,
  3136. .post_block.solved h3 *,
  3137. .answerBadgeInPost,
  3138. .horizontalView .post_block.solved .author_info *{
  3139. color: #fff !important;
  3140. }
  3141.  
  3142. .horizontalView .post_block.solved .author_info .ipsUserPhoto{
  3143. border-color: #353535 !important;
  3144. }
  3145.  
  3146. .post_block.solved h3,
  3147. .horizontalView .post_block.solved .author_info{
  3148. background-image: -moz-linear-gradient(top, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
  3149. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.08)), color-stop(100%,rgba(255,255,255,0)));
  3150. background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.08) 0%,rgba(255,255,255,0) 100%);
  3151. background-image: -o-linear-gradient(top, rgba(255,255,255,0.08) 0%,rgba(255,255,255,0) 100%);
  3152. background-image: -ms-linear-gradient(top, rgba(255,255,255,0.08) 0%,rgba(255,255,255,0) 100%);
  3153. background-image: linear-gradient(to bottom, rgba(255,255,255,0.08) 0%,rgba(255,255,255,0) 100%);
  3154. border-left: 0;
  3155. border-right: 0;
  3156. }
  3157. .answerBadgeInPost{
  3158. border-top: 0;
  3159. padding: 0 12px;
  3160. height: 30px;
  3161. line-height: 30px;
  3162. position: relative;
  3163. float: right;
  3164. margin: -13px -2px 8px 8px;
  3165. -webkit-border-bottom-left-radius: 3px;
  3166. -webkit-border-bottom-right-radius: 3px;
  3167. -moz-border-radius: 0px 0px 3px 3px;
  3168. border-radius: 0px 0px 3px 3px;
  3169. }
  3170.  
  3171. .post_block.feature_box {
  3172. background-color: #5d5d5d;
  3173. background-image: -moz-linear-gradient(top, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 100%);
  3174. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.07)), color-stop(100%,rgba(255,255,255,0)));
  3175. background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.07) 0%,rgba(255,255,255,0) 100%);
  3176. background-image: -o-linear-gradient(top, rgba(255,255,255,0.07) 0%,rgba(255,255,255,0) 100%);
  3177. background-image: -ms-linear-gradient(top, rgba(255,255,255,0.07) 0%,rgba(255,255,255,0) 100%);
  3178. background-image: linear-gradient(to bottom, rgba(255,255,255,0.07) 0%,rgba(255,255,255,0) 100%);
  3179. -webkit-box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  3180. -moz-box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  3181. box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  3182. border: 1px solid #838383;
  3183. padding: 8px;
  3184. min-height: 60px;
  3185. line-height: 180%;
  3186. font-size: 11.4px;
  3187. word-wrap: break-word;
  3188. }
  3189.  
  3190. .post_block.feature_box, .post_block.feature_box *{
  3191. color: #fcfcfc !important;
  3192. }
  3193.  
  3194. .post_block.feature_box .ipsType_sectiontitle {
  3195. border-color: #838383;
  3196. font-size: 11.8px;
  3197. font-weight: bold;
  3198. }
  3199.  
  3200. .post_block.feature_box .ipsBadge_green, .post_block.feature_box .ipsBadge_lightgrey{
  3201. background: #353535;
  3202. -webkit-box-shadow: inset rgba(0,0,0,0.6) 0px 1px 3px, rgba(255,255,255,0.25) 0px 1px 0px;
  3203. -moz-box-shadow: inset rgba(0,0,0,0.6) 0px 1px 3px, rgba(255,255,255,0.25) 0px 1px 0px;
  3204. box-shadow: inset rgba(0,0,0,0.6) 0px 1px 3px, rgba(255,255,255,0.25) 0px 1px 0px;
  3205. color: #fff !important;
  3206. text-shadow: rgba(0,0,0,0.4) 0px -1px 0px;
  3207. padding: 3px 9px;
  3208. font-size: 10px;
  3209. }
  3210.  
  3211. .post_block.feature_box .ipsBadge_lightgrey:hover{
  3212. background: #262626;
  3213. }
  3214.  
  3215. .post_block.feature_box .ipsUserPhoto{
  3216. border-color: #353535 !important;
  3217. }
  3218. .post_block h3 {
  3219. border-top: 1px solid #3f3f3f;
  3220. border-bottom: 1px solid #3f3f3f;
  3221. text-shadow: rgba(0,0,0,0.4) 0px -1px 0px;
  3222. background: #363636 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px;
  3223. padding: 0 10px;
  3224. height: 36px;
  3225. line-height: 36px;
  3226. font-weight: normal;
  3227. font-size: 13px;
  3228. }
  3229.  
  3230. .post_block h3,
  3231. .post_block h3 a{
  3232. color: #fff;
  3233. }
  3234.  
  3235. .post_block:first-of-type h3{ border-top: 0; }
  3236.  
  3237. .post_online{
  3238. vertical-align: middle;
  3239. margin: -3px 5px 0 0;
  3240. }
  3241.  
  3242. .post_username{
  3243. float: left;
  3244. min-width: 177px;
  3245. font-weight: bold;
  3246. }
  3247.  
  3248. .post_date{
  3249. color: #777;
  3250. float: left;
  3251. font-size: 11px;
  3252. font-weight: normal;
  3253. }
  3254.  
  3255. .post_wrap { top: 0px; }
  3256.  
  3257. .post_body {
  3258. margin-left: 175px;
  3259. padding: 12px;
  3260. }
  3261.  
  3262. .post_body .post {
  3263. line-height: 1.6;
  3264. font-size: 12px;
  3265. }
  3266.  
  3267. .column_view .post_body .post{ padding-bottom: 12px; }
  3268.  
  3269. .post_block.no_sidebar .post_body { margin-left: 0px !important; }
  3270.  
  3271. .posted_info {
  3272. padding: 0 0 10px 0;
  3273. }
  3274.  
  3275. .posted_info strong.event {
  3276. color: #1c2837;
  3277. font-size: 1.2em;
  3278. }
  3279.  
  3280. .post_ignore {
  3281. background: #1c1c1c;
  3282. color: #777;
  3283. font-size: 0.9em;
  3284. padding: 15px;
  3285. }
  3286.  
  3287. .post_ignore .reputation {
  3288. text-align: center;
  3289. padding: 2px 6px;
  3290. float: none;
  3291. display: inline;
  3292. }
  3293.  
  3294. .rep_bar {
  3295. white-space: nowrap;
  3296. margin: 6px 4px;
  3297. }
  3298.  
  3299. .rep_bar .reputation {
  3300. font-size: 10px;
  3301. padding: 2px 10px !important;
  3302. }
  3303.  
  3304. p.rep_highlight {
  3305. float: right;
  3306. display: inline-block;
  3307. margin: 5px 10px 10px 10px;
  3308. background: #D5DEE5;
  3309. color: #1d3652;
  3310. padding: 5px;
  3311. -moz-border-radius: 5px;
  3312. -webkit-border-radius: 5px;
  3313. border-radius: 5px;
  3314. font-size: 0.8em;
  3315. font-weight: bold;
  3316. text-align: center;
  3317. }
  3318.  
  3319. p.rep_highlight img {
  3320. margin-bottom: 4px;
  3321. }
  3322.  
  3323. .edit {
  3324. padding: 8px 8px 8px 28px;
  3325. background: #e0aa4b url('{style_images_url}/comment_edit.png') no-repeat 6px 10px;
  3326. border: 1px solid #efba5c;
  3327. color: #723e07;
  3328. text-shadow: #f4c778 0px 1px 0px;
  3329. font-size: 11px;
  3330. margin-top: 15px;
  3331. line-height: 18px;
  3332. }
  3333.  
  3334. .poll fieldset {
  3335. padding: 9px;
  3336. }
  3337.  
  3338. .poll_question {
  3339.  
  3340. }
  3341.  
  3342. .poll_question h4 {
  3343. background: #222222 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 -1px;
  3344. padding: 5px;
  3345. -webkit-border-radius: 0px;
  3346. -moz-border-radius: 0px;
  3347. border-radius: 0px;
  3348. }
  3349.  
  3350. .poll_question ol {
  3351. padding: 20px;
  3352. }
  3353.  
  3354. .poll_question li {
  3355. font-size: 0.9em;
  3356. margin: 6px 0;
  3357. }
  3358.  
  3359. .poll_question .votes {
  3360. margin-left: 5px;
  3361. }
  3362.  
  3363. .snapback {
  3364. margin-right: 5px;
  3365. padding: 1px 0 1px 1px;
  3366. }
  3367.  
  3368. .rating { display: block; margin-bottom: 4px; line-height: 16px; }
  3369. .rating img { vertical-align: top; }
  3370. #rating_text { margin-left: 4px; }
  3371.  
  3372. /************************************************************************/
  3373. /* POSTING FORM (& RELATED) STYLES */
  3374.  
  3375. div.post_form label {
  3376. text-align: right;
  3377. padding-right: 15px;
  3378. width: 275px;
  3379. float: left;
  3380. clear: both;
  3381. }
  3382.  
  3383. div.post_form span.desc,
  3384. fieldset#poll_wrap span.desc {
  3385. margin-left: 290px;
  3386. display: block;
  3387. clear: both;
  3388. }
  3389.  
  3390. div.post_form .checkbox input.input_check,
  3391. #mod_form .checkbox input.input_check {
  3392. margin-left: 295px;
  3393. }
  3394.  
  3395. div.post_form .antispam_img {
  3396. margin-left: 290px;
  3397. }
  3398.  
  3399. div.post_form .captcha .input_text {
  3400. float: left;
  3401. }
  3402.  
  3403. div.post_form fieldset {
  3404. padding-bottom: 15px;
  3405. }
  3406.  
  3407. div.post_form h3 {
  3408. margin-bottom: 10px;
  3409. }
  3410.  
  3411. fieldset.with_subhead {
  3412. margin-bottom: 0;
  3413. padding-bottom: 0;
  3414. }
  3415.  
  3416. fieldset.with_subhead h4 {
  3417. text-align: right;
  3418. margin-top: 6px;
  3419. width: 300px;
  3420. float: left;
  3421. }
  3422.  
  3423. fieldset.with_subhead ul {
  3424. padding-top: 10px;
  3425. padding-bottom: 10px;
  3426. margin: 0 15px 0px 320px;
  3427. }
  3428.  
  3429. fieldset.with_subhead span.desc,
  3430. fieldset.with_subhead label {
  3431. margin: 0;
  3432. width: auto;
  3433. }
  3434.  
  3435. fieldset.with_subhead .checkbox input.input_check {
  3436. margin-left: 0px;
  3437. }
  3438.  
  3439. #toggle_post_options {
  3440. background: transparent url('{style_images_url}/add.png') no-repeat;
  3441. font-size: 0.9em;
  3442. padding: 2px 0 2px 22px;
  3443. margin: 15px;
  3444. display: block;
  3445. }
  3446.  
  3447. #poll_wrap .question {
  3448. margin-bottom: 10px;
  3449. }
  3450.  
  3451. #poll_wrap .question .wrap ol {
  3452. margin-left: 25px;
  3453. list-style: decimal;
  3454. }
  3455. #poll_wrap .question .wrap ol li {
  3456. margin: 5px;
  3457. }
  3458.  
  3459. .question_title { margin-left: 30px; padding-bottom: 0; }
  3460. .question_title .input_text { font-weight: bold }
  3461.  
  3462. #poll_wrap { position: relative; }
  3463. #poll_footer { }
  3464. #poll_container_wrap { overflow: auto; }
  3465. #poll_popup_inner { overflow: hidden; }
  3466.  
  3467. .poll_control { margin-left: 20px; }
  3468. .post_form .tag_field ul { margin-left: 290px; }
  3469.  
  3470. /************************************************************************/
  3471. /* ATTACHMENT MANAGER (& RELATED) STYLES */
  3472.  
  3473. .swfupload {
  3474. position: absolute;
  3475. z-index: 1;
  3476. }
  3477.  
  3478. #attachments { }
  3479.  
  3480. #attachments li {
  3481. background-color: #2a2a2a;
  3482. text-shadow: rgba(0,0,0,0.4) 0px -1px 0px;
  3483. border: 1px solid #383838;
  3484. padding: 6px 20px 6px 42px;
  3485. margin-bottom: 10px;
  3486. position: relative;
  3487. -webkit-box-shadow: inset rgba(0,0,0,0.1) 0px 1px 4px;
  3488. -moz-box-shadow: inset rgba(0,0,0,0.1) 0px 1px 4px;
  3489. box-shadow: inset rgba(0,0,0,0.1) 0px 1px 4px;
  3490. }
  3491.  
  3492. #attachments li p.info {
  3493. font-size: 0.8em;
  3494. width: 300px;
  3495. }
  3496.  
  3497. #attachments li .links, #attachments li.error .links, #attachments.traditional .progress_bar {
  3498. display: none;
  3499. }
  3500.  
  3501. #attachments li.complete .links {
  3502. font-size: 0.9em;
  3503. margin-right: 15px;
  3504. right: 0px;
  3505. top: 12px;
  3506. display: block;
  3507. position: absolute;
  3508. }
  3509.  
  3510. #attachments li .progress_bar {
  3511. margin-right: 15px;
  3512. width: 200px;
  3513. right: 0px;
  3514. top: 15px;
  3515. position: absolute;
  3516. }
  3517.  
  3518. #attachments li.complete, #attachments li.in_progress, #attachments li.error {
  3519. background-repeat: no-repeat;
  3520. background-position: 12px 12px;
  3521. }
  3522.  
  3523. #attachments li.in_progress {
  3524. background-image: url('{style_images_url}/loading.gif');
  3525. }
  3526.  
  3527. #attachments li.error {
  3528. background-image: url('{style_images_url}/exclamation.png');
  3529. background-color: #822f2f;
  3530. border: 1px solid #9c4141;
  3531. }
  3532.  
  3533. #attachments li.error .info {
  3534. color: #fff;
  3535. }
  3536.  
  3537. #attachments li.complete {
  3538. background-image: url('{style_images_url}/accept.png');
  3539. }
  3540.  
  3541. #attachments li .thumb_img {
  3542. left: 6px;
  3543. top: 6px;
  3544. width: 30px;
  3545. height: 30px;
  3546. overflow: hidden;
  3547. position: absolute;
  3548. }
  3549.  
  3550. .attach_controls {
  3551. background: url('{style_images_url}/icon_attach.png') no-repeat 3px top;
  3552. padding-left: 30px;
  3553. min-height: 82px;
  3554. }
  3555.  
  3556. .attach_controls .ipsType_subtitle { margin-bottom: 5px; }
  3557. .attach_controls iframe { display: block; margin-bottom: 5px; }
  3558.  
  3559. .attach_button { font-weight: bold; }
  3560. #help_msg { margin-top: 8px; }
  3561.  
  3562. #attach_wrap {
  3563. margin-top: 10px; overflow: hidden;
  3564. }
  3565.  
  3566. #attach_wrap h4 {
  3567. font-size: 16px;
  3568. padding-left: 0px;
  3569. }
  3570.  
  3571. #attach_wrap li {
  3572. margin: 5px 0;
  3573. float: left;
  3574. }
  3575.  
  3576. #attach_wrap .attachment {
  3577. float: none;
  3578. }
  3579.  
  3580. #attach_wrap .desc.info {
  3581. margin-left: 24px;
  3582. }
  3583.  
  3584. #attach_error_box { margin-bottom: 10px; }
  3585.  
  3586. .resized_img {
  3587. margin: 0 5px 5px 0;
  3588. display: inline-block;
  3589. }
  3590.  
  3591. /************************************************************************/
  3592. /* REPUTATION STYLES */
  3593.  
  3594. .reputation {
  3595. font-weight: bold;
  3596. padding: 3px 8px;
  3597. display: inline-block;
  3598. -moz-border-radius: 3px;
  3599. -webkit-border-radius: 3px;
  3600. border-radius: 3px;
  3601. text-shadow: rgba(0,0,0,0.3) 0px -1px 0px;
  3602. }
  3603.  
  3604. .reputation.positive, .members li.positive {
  3605. background: #04B404 url('{style_images_url}/highlight_faint.png') repeat-x 0 0;
  3606. }
  3607.  
  3608. .reputation.negative, .members li.negative {
  3609. background: #b82929 url('{style_images_url}/highlight_faint.png') repeat-x 0 0;
  3610. }
  3611.  
  3612. .reputation.positive, .reputation.negative {
  3613. color: #fff;
  3614. }
  3615.  
  3616. .reputation.zero {
  3617. background: #393939 url('{style_images_url}/highlight_faint.png') repeat-x 0 0;
  3618. color: #fff;
  3619. }
  3620.  
  3621. .status_main_content { white-space: break-word; }
  3622.  
  3623. .status_main_content h4 {
  3624. font-weight:normal;
  3625. font-size:1.2em;
  3626. }
  3627.  
  3628. .status_main_content h4 .su_links a { font-weight: normal; }
  3629.  
  3630. .status_main_content p {
  3631. padding: 6px 0px 6px 0px;
  3632. }
  3633.  
  3634. .status_main_content h4 a {
  3635. font-weight:bold;
  3636. text-decoration: none;
  3637. }
  3638.  
  3639. .status_mini_wrap {
  3640. padding: 7px;
  3641. font-size: 0.95em;
  3642. margin-top: 2px;
  3643. background: rgba(0,0,0,0.04);
  3644. -webkit-border-radius: 3px;
  3645. -moz-border-radius: 3px;
  3646. border-radius: 3px;
  3647. }
  3648. .status_mini_wrap img{ vertical-align: middle; position: relative; margin-top: -2px; }
  3649.  
  3650. .status_mini_photo {
  3651. float: left;
  3652. }
  3653.  
  3654. .status_textarea {
  3655. width: 99%;
  3656. }
  3657.  
  3658. #index_stats .status_textarea{
  3659. width: 200px;
  3660. }
  3661.  
  3662. .status_replies_many {
  3663. height: 300px;
  3664. overflow: auto;
  3665. }
  3666.  
  3667. .status_update {
  3668. background: #1a1a1a url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 0;
  3669. color: #fff;
  3670. text-shadow: rgba(0,0,0,0.3) 0px -1px 0px;
  3671. padding: 15px 12px;
  3672. text-align: center;
  3673. }
  3674.  
  3675. .status_update .input_text {
  3676. width: 70%;
  3677. }
  3678.  
  3679. .status_update .input_submit{ padding-left: 15px; padding-right: 15px; }
  3680. .status_submit{ padding-top: 5px; }
  3681. /*.status_update .status_inactive { color: #bbbbbb; }*/
  3682. #status_wrapper h4 { font-weight: bold; font-size: 14px; }
  3683. .status_content { line-height: 1.4; }
  3684. .status_content .mod_links { opacity: 0.2; }
  3685. .status_content:hover .mod_links { opacity: 1; }
  3686. .status_content .h4, .status_content .status_status { font-size: 14px; word-wrap: break-word; }
  3687. .status_content .status_status{ padding: 2px 0 5px 0; }
  3688. .status_feedback .status_mini_content{ line-height: 18px; }
  3689. .status_feedback { margin: 10px 0 0 -10px; }
  3690. /*.status_feedback .row2 { margin-bottom: 1px; }*/
  3691.  
  3692. /* Favorites */
  3693. .ips_like {
  3694. background-color: #f6f6f6;
  3695. padding: 6px;
  3696. color: #878787;
  3697. font-size: 1em;
  3698. min-height: 18px;
  3699. line-height: 130%;
  3700. clear: both;
  3701. overflow: hidden;
  3702. }
  3703. .ips_like a {
  3704. color: #878787;
  3705. }
  3706.  
  3707. .ips_like a.ftoggle {
  3708. float: right;
  3709. background: #878787;
  3710. border:1px solid #747474;
  3711. padding: 3px 4px 2px 4px;
  3712. color: #fff;
  3713. text-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
  3714. font-size:0.9em;
  3715. text-decoration: none;
  3716. -webkit-border-radius: 2px;
  3717. -moz-border-radius: 2px;
  3718. border-radius: 2px;
  3719. margin-top: -4px;
  3720. }
  3721.  
  3722. .ips_like a.ftoggle.on {
  3723. background: #545454;
  3724. border-color: #474747;
  3725. margin-left: 3px;
  3726. }
  3727.  
  3728. .ips_like a.ftoggle._newline,
  3729. .ips_like a.ftoggle.on._newline {
  3730. float:none;
  3731. margin-top: 5px;
  3732. margin-left: auto;
  3733. margin-right: 0;
  3734. display: block;
  3735. width: 70px;
  3736. text-align: center;
  3737. }
  3738.  
  3739. .ips_like a:hover.ftoggle.on,
  3740. .ips_like a:hover.ftoggle {
  3741. background-color: #545454;
  3742. }
  3743.  
  3744. .facebook-like { margin-top: 5px; }
  3745.  
  3746. .boxShadow {
  3747. float: left;
  3748. -webkit-box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  3749. -moz-box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  3750. box-shadow: rgba(0,0,0,0.1) 0px 1px 5px;
  3751. }
  3752.  
  3753. /* New notification panel */
  3754. #ipsGlobalNotification {
  3755. position: fixed;
  3756. left: 50%;
  3757. margin-left: -250px;
  3758. top: 20px;
  3759. text-align: center;
  3760. font-weight: bold;
  3761. }
  3762.  
  3763. #ips_NotificationCloseButton {
  3764. background: transparent url('{style_images_url}/close_popup.png') no-repeat top left;
  3765. opacity: 0.8;
  3766. width: 13px;
  3767. height: 13px;
  3768. top: 5px;
  3769. left: 5px;
  3770. position: absolute;
  3771. cursor: pointer;
  3772. }
  3773.  
  3774. .googlePlusOne {
  3775. display: inline-block;
  3776. vertical-align:middle;
  3777. margin-top: 1px;
  3778. }
  3779.  
  3780. .fbLike {
  3781. float: right !important;
  3782. padding-left: 2px;
  3783. }
  3784.  
  3785. /************************************************************************/
  3786. /* SHARED MEDIA STYLES */
  3787.  
  3788. #mymedia_inserted {
  3789. position: absolute;
  3790. top: 100px; left: 50%;
  3791. margin-left: -200px;
  3792. width: 400px;
  3793. padding: 20px 0;
  3794. background: #000;
  3795. font-size: 15px;
  3796. font-weight: bold;
  3797. color: #fff;
  3798. z-index: 20000;
  3799. text-align: center;
  3800. -moz-border-radius: 4px;
  3801. -webkit-border-radius: 4px;
  3802. border-radius: 4px;
  3803. }
  3804.  
  3805. #mymedia_toolbar {
  3806. position: absolute;
  3807. bottom: 0; left: 0; right: 0;
  3808. height: 42px;
  3809. line-height: 42px;
  3810. padding: 0 5px;
  3811. background: #2d2d2d url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 1px;
  3812. }
  3813.  
  3814. #mymedia_finish { position: absolute; right: 5px; top: 5px; }
  3815. #mymedia_content { height: 339px; overflow: auto; }
  3816.  
  3817. .media_results li.result {
  3818. width: 20%;
  3819. height: 120px;
  3820. padding: 10px 0;
  3821. float: left;
  3822. text-align: center;
  3823. cursor: pointer;
  3824. -moz-border-radius: 4px;
  3825. -webkit-border-radius: 4px;
  3826. border-radius: 4px;
  3827. }
  3828.  
  3829. .media_results li:hover {
  3830. background: #252525;
  3831. }
  3832. .media_results li:active {
  3833. background: #252525;
  3834. }
  3835.  
  3836. .media_image {
  3837. padding: 1px;
  3838. background: #2d2d2d;
  3839. border: 1px solid #0e0e0e;
  3840. margin-bottom: 5px;
  3841. -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
  3842. -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
  3843. box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
  3844. }
  3845.  
  3846. /********************************************************/
  3847. /* Template Error */
  3848.  
  3849. .templateError {
  3850. background: #ffffff !important;
  3851. color: #000000 !important;
  3852. padding: 10px !important;
  3853. border: 1px dotted black !important;
  3854. margin: 0px !important;
  3855. }
  3856.  
  3857. /********************************************************/
  3858. /* ModCP styles */
  3859.  
  3860. .modcp_post_controls { padding-bottom: 15px; }
  3861. .modcp_post_controls .ipsButton_secondary { opacity: 0.5; }
  3862. .post_body:hover .modcp_post_controls .ipsButton_secondary { opacity: 1; }
  3863.  
  3864. #modcp_content .ipsFilterbar li.active a {
  3865. margin-bottom: 1px;
  3866. display: inline-block;
  3867. }
  3868.  
  3869. /********************************************************/
  3870. /* Advertisements from Nexus */
  3871.  
  3872. .nexusad { padding: 10px; clear: both; }
  3873.  
  3874. #bbcode-description {
  3875. color: #666 !important;
  3876. white-space: normal !important;
  3877. word-wrap: break-word;
  3878. }
  3879.  
  3880. /********************************************************/
  3881. /* iPad Specific */
  3882. @media only screen and (device-width: 768px) {
  3883. table.ipb_table .expander,
  3884. table.ipb_table .ipsModMenu { visibility: visible; opacity: 0.2; }
  3885. .post_block .post_controls { opacity: 1 !important; }
  3886. }
  3887.  
  3888. /* Additional */
  3889.  
  3890. .notnew .highlight_unread, .notnew .highlight_unread a{ color: #898989; }
  3891.  
  3892. #stats_div{
  3893. height: 0px;
  3894. overflow: hidden;
  3895. }
  3896.  
  3897. .skin_link{ float: left; padding-top: 4px; /* padding-left: 31px; */ }
  3898. .skin_link, .skin_link a{ color: #bcbcbc !important; }
  3899. .skin_link a:hover{ color: #bcbcbc !important; text-decoration: underline; }
  3900.  
  3901. .negMargin{ margin: -9px; }
  3902. .negMarginTop{ margin-top: -9px; }
  3903. .negMarginRight{ margin-right: -9px; }
  3904. .negMarginBottom{ margin-bottom: -9px; }
  3905. .negMarginLeft{ margin-left: -9px; }
  3906. .input_submit, .ipsButton_secondary{ outline: none; }
  3907. #rss_feed{ margin-top: -1px; }
  3908. #index_stats .status_submit .input_submit{ font-size: 11px; }
  3909. div[id$="member_popup"] .general_box{ margin: 0; border: 0; }
  3910. #ipsNav_content a{ display: block; padding: 5px 10px; }
  3911. #ipsNav_content li{ padding: 0; }
  3912. .ipsList_withminiphoto.ipsPad_half{ padding: 0 !important; } /* Fix downloads sidebar padding */
  3913. .ipsList_withminiphoto > li, .ipsHeaderMenu h4 { overflow: hidden; }
  3914. .status_list li{ margin-top: 10px; } /* Fix status updates on idx */
  3915. .fullList{ margin: -9px; } /* Must be the same as ipsPad */
  3916. #usercp_content .ipsType_subtitle{ margin-bottom: 10px; padding-bottom: 6px; padding-top: 3px; }
  3917. #modCpanel .ipsType_subtitle{ padding-top: 4px; padding-bottom: 5px; }
  3918. .col_f_icon span { margin-bottom: 6px; margin-top: 2px; }
  3919. .idx_album_thumb img{ width: 32px; height: 32px; }
  3920. .idx_album_thumb img, .inlineimage img, #appGallLatestHook img{
  3921. -webkit-border-radius: 3px;
  3922. border-radius: 3px;
  3923. -webkit-box-shadow: rgba(0,0,0,0.2) 0px 1px 2px;
  3924. -moz-box-shadow: rgba(0,0,0,0.2) 0px 1px 2px;
  3925. box-shadow: rgba(0,0,0,0.2) 0px 1px 2px;
  3926. }
  3927. .inlineimage img:hover, #appGallLatestHook img:hover{ opacity: 0.9; }
  3928. .topic_desc{ display: inline-block; padding-top: 3px; }
  3929.  
  3930. .ipbfs_login h4{
  3931. padding: 10px;
  3932. font-weight: bold;
  3933. font-size: 14px;
  3934. background: #222 url('{style_images_url}/highlight_reallyfaint.png') repeat-x 0 0;
  3935. border-bottom: 1px solid #393939;
  3936. }
  3937.  
  3938. .ipbfs_login .ipsForm_submit{ margin-top: 0; }
  3939. .ipbfs_login .ipsBox_notice{ margin: 0; }
  3940. .ipbfs_login_col{ float: left; width: 279px; padding: 15px 10px; }
  3941. .ipbfs_login_col a:hover{ text-decoration: underline; }
  3942. .ipbfs_login_row{ overflow: hidden; }
  3943. .ipbfs_login_row label{ font-size: 1.15em; }
  3944. .ipbfs_login .input_submit{ font-size: 13px; }
  3945.  
  3946. .ipbfs_login_input {
  3947. padding: 6px 0px 6px 28px;
  3948. font-size: 14px;
  3949. margin-top: 10px;
  3950. width: 250px;
  3951. }
  3952.  
  3953. .ipbfs_luser{ background-image: url("{style_images_url}/user.png"); background-repeat: no-repeat; background-position: 7px 50%; }
  3954. .ipbfs_lpassword{ background-image: url("{style_images_url}/key.png"); background-repeat: no-repeat; background-position: 7px 50%; }
  3955.  
  3956. .ipbfs_titlebox .desc{ padding: 3px 0; }
  3957.  
  3958. .ipbfs_titlebox{
  3959. background: #1d1d1d;
  3960. border: 1px solid #303030;
  3961. -webkit-box-shadow: inset rgba(0,0,0,0.4) 0px 1px 6px;
  3962. -moz-box-shadow: inset rgba(0,0,0,0.4) 0px 1px 6px;
  3963. box-shadow: inset rgba(0,0,0,0.4) 0px 1px 6px;
  3964. text-shadow: rgba(0,0,0,0.8) 0px -1px 0px;
  3965. -moz-border-radius: 3px;
  3966. -webkit-border-radius: 3px;
  3967. border-radius: 3px;
  3968. padding: 10px;
  3969. overflow: hidden;
  3970. }
  3971.  
  3972. .content_border{
  3973. border: 1px solid #393939;
  3974. }
  3975.  
  3976. .guestMessage{
  3977. background: #1d1d1d;
  3978. border: 1px solid #303030;
  3979. -webkit-box-shadow: inset rgba(0,0,0,0.4) 0px 1px 6px;
  3980. -moz-box-shadow: inset rgba(0,0,0,0.4) 0px 1px 6px;
  3981. box-shadow: inset rgba(0,0,0,0.4) 0px 1px 6px;
  3982. text-shadow: rgba(0,0,0,0.8) 0px -1px 0px;
  3983. -moz-border-radius: 3px;
  3984. -webkit-border-radius: 3px;
  3985. border-radius: 3px;
  3986. color: #dddddd;
  3987. font-family: Arial, Helvetica, sans-serif;
  3988. font-size: 12px;
  3989. line-height: 140%;
  3990. margin-bottom: 10px;
  3991. padding: 10px;
  3992. }
  3993.  
  3994. .guestMessage strong{ display: inline-block; margin-bottom: 7px; }
  3995.  
  3996. .guestMessage a{
  3997. color: #fff;
  3998. text-decoration: none;
  3999. border-bottom: 1px solid #bcbcbc;
  4000. }
  4001.  
  4002. .forum_name{
  4003. font-weight: bold;
  4004. }
  4005.  
  4006. .forum_desc_pos{
  4007. position: relative;
  4008. }
  4009.  
  4010. .forum_desc_con{
  4011. width: 350px;
  4012. display: none;
  4013. left: 10px;
  4014. float: left;
  4015. position: absolute;
  4016. top: -4px;
  4017. padding-left: 10px;
  4018. background: url("{style_images_url}/forum_desc_arrow.png") no-repeat 6px 9px;
  4019. z-index: 10000;
  4020. }
  4021.  
  4022. .forum_description{
  4023. color: #fff;
  4024. border-radius: 3px;
  4025. -moz-border-radius: 3px;
  4026. -webkit-border-radius: 3px;
  4027. background: url("{style_images_url}/forum_desc.png") repeat;
  4028. background: rgba(15,15,15,0.9);
  4029. -webkit-box-shadow: rgba(0,0,0,0.3) 0px 1px 7px;
  4030. -moz-box-shadow: rgba(0,0,0,0.3) 0px 1px 7px;
  4031. box-shadow: rgba(0,0,0,0.3) 0px 1px 7px;
  4032. font-size: 11px;
  4033. padding: 5px;
  4034. display: block;
  4035. float: left;
  4036. }
  4037.  
  4038. .topicViewIcons{
  4039. overflow: hidden;
  4040. position: relative;
  4041. padding-bottom: 1px;
  4042. margin: -3px 10px -5px 0;
  4043. }
  4044.  
  4045. .topicViewIcons img{
  4046. vertical-align: top;
  4047. margin-top: 4px;
  4048. width: 16px;
  4049. height: 16px;
  4050. background: url("{style_images_url}/topicViewIcon.png") no-repeat;
  4051. }
  4052.  
  4053. .topicViewIcons #topicViewRegular img{ background-position: 0 -16px; }
  4054. .topicViewIcons #topicViewRegular.active img{ background-position: 0 -16px; }
  4055. .topicViewIcons #topicViewBasic img{ background-position: -16px -16px; }
  4056. .topicViewIcons #topicViewBasic.active img{ background-position: -16px -16px; }
  4057.  
  4058. .topicViewIcons a{
  4059. -webkit-border-radius: 3px;
  4060. -moz-border-radius: 3px;
  4061. border-radius: 3px;
  4062. float: left;
  4063. width: 22px;
  4064. height: 22px;
  4065. text-decoration: none;
  4066. text-align: center;
  4067. outline: none;
  4068. margin-right: 5px;
  4069. opacity: 0.6;
  4070. }
  4071.  
  4072. .topicViewIcons a:hover{
  4073. background: url("{style_images_url}/trans10.png") repeat;
  4074. background: rgba(0,0,0,0.1);
  4075. opacity: 1;
  4076. }
  4077.  
  4078. .topicViewIcons a.active{
  4079. background: url("{style_images_url}/trans50.png") repeat;
  4080. background: rgba(0,0,0,0.5);
  4081. -webkit-box-shadow: inset rgba(0,0,0,0.6) 0px 1px 3px, rgba(255,255,255,0.15) 0px 1px 0px;
  4082. -moz-box-shadow: inset rgba(0,0,0,0.6) 0px 1px 3px, rgba(255,255,255,0.15) 0px 1px 0px;
  4083. box-shadow: inset rgba(0,0,0,0.6) 0px 1px 3px, rgba(255,255,255,0.15) 0px 1px 0px;
  4084. opacity: 1;
  4085. }
  4086.  
  4087. .basicTopicView .post_body{ margin-left: 0 !important; border: 0 !important; }
  4088. .basicTopicView .post_body ul.post_controls{ margin: 0 -12px -12px -12px; border: 0; background: transparent; }
  4089. .basicTopicView .author_info, .basicTopicView .signature{ display: none; }
  4090. .basicTopicView .post_username{ min-width: 0px; padding-right: 10px; margin-right: 10px; border-right: 1px solid rgba(255,255,255,0.1); }
  4091.  
  4092. .ipbforumskins{}
  4093.  
  4094. #category_17.category_block
  4095. .col_c_forum {
  4096. width: 100%;
  4097. }
  4098.  
  4099. table.ipb_table ol.subforums1 {margin-top: 3px;float: left;width: 33%;}table.ipb_table ol.subforums1 li{background: url('{style_images_url}/subforum_nonew.png') no-repeat 0 50%;padding: 0 15px 0 15px;margin: 0;float: left;}table.ipb_table .subforums1 li.unread { font-weight: bold; background-image: url('{style_images_url}/subforum_new.png'); }table.ipb_table ol.subforums2 {width: 33%;overflow: hidden;}table.ipb_table ol.subforums2 li {background: url('{style_images_url}/subforum_nonew.png') no-repeat 0 50%;padding: 0 15px 0 15px;margin: 0;float: left;}table.ipb_table .subforums2 li.unread { font-weight: bold; background-image: url('{style_images_url}/subforum_new.png'); }table.ipb_table ol.subforums3 {width: 33%;overflow: hidden;}table.ipb_table ol.subforums3 li {background: url('{style_images_url}/subforum_nonew.png') no-repeat 0 50%;padding: 0 15px 0 15px;margin: 0;float: left;}table.ipb_table .subforums3 li.unread { font-weight: bold; background-image: url('{style_images_url}/subforum_new.png'); }
  4100.  
  4101. .extraUserInfo{
  4102. font-size:12px;
  4103. padding:4px 0px;
  4104. font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
  4105. }
  4106. .pairsJustified{
  4107. margin:1px 0 0;
  4108. font-size:12px;
  4109. border-bottom:1px solid #2F2F2F;
  4110. overflow:hidden;
  4111. line-height:2;
  4112. list-style-type: none;
  4113. }
  4114. .pairsJustified:hover{
  4115. border-bottom:1px solid #B53628;
  4116. }
  4117. .pairsJustified dt{
  4118. font-size:12px !important;
  4119. float:left;
  4120. padding-left:5px;
  4121. text-align:left;
  4122. max-width:100%;
  4123. color:#ababab;
  4124. text-shadow:0 1px #000;
  4125. }
  4126. .pairsJustified dd{
  4127. float:right;
  4128. font-size:11px !important;
  4129. text-align:right;
  4130. max-width:100%;
  4131. padding-right:5px;
  4132. text-shadow:0 1px #000;
  4133. }
  4134.  
  4135. .nstatsNumber, .nstatsText {display: block;text-align: center;color: #bcbcbc;line-height: 23px;text-transform: uppercase;font-size: 11px;}.nstatsText {color: #acacac;font-size: 9px;}
  4136.  
  4137. ::-webkit-scrollbar {
  4138. width: 3px;
  4139. height: 0px;
  4140. }
  4141.  
  4142. ::-webkit-scrollbar-track {
  4143. background-color: #757575;
  4144. }
  4145. ::-webkit-scrollbar-thumb {
  4146. background: #B53628;
  4147. }
  4148.  
  4149. .rosu {
  4150. padding: 9px;
  4151.  
  4152. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement