Guest User

Untitled

a guest
Oct 19th, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 11.32 KB | None | 0 0
  1. /* General Markup Styles
  2. ---------------------------------------- */
  3.  
  4. * {
  5.     /* Reset browsers default margin, padding and font sizes */
  6.     margin: 0;
  7.     padding: 0;
  8. }
  9.  
  10. html {
  11.     font-size: 100%;
  12.     /* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers */
  13.     height: 101%;
  14. }
  15.  
  16. body {
  17.     /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
  18.     font-family: Verdana, Helvetica, Arial, sans-serif;
  19.     color: #828282;
  20.     background-color: #FFFFFF;
  21.     /*font-size: 62.5%;          This sets the default font size to be equivalent to 10px */
  22.     font-size: 10px;
  23.     margin: 0;
  24.     padding: 0;
  25. }
  26.  
  27. h1 {
  28.     /* Forum name */
  29.     font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  30.     margin-right: 200px;
  31.     color: #FFFFFF;
  32.     margin-top: 15px;
  33.     font-weight: bold;
  34.     font-size: 2em;
  35. }
  36.  
  37. h2 {
  38.     /* Forum header titles */
  39.     font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  40.     font-weight: normal;
  41.     color: #3f3f3f;
  42.     font-size: 2em;
  43.     margin: 0.8em 0 0.2em 0;
  44. }
  45.  
  46. h2.solo {
  47.     margin-bottom: 1em;
  48. }
  49.  
  50. h3 {
  51.     /* Sub-headers (also used as post headers, but defined later) */
  52.     font-family: Arial, Helvetica, sans-serif;
  53.     font-weight: bold;
  54.     text-transform: uppercase;
  55.     border-bottom: 1px solid #CCCCCC;
  56.     margin-bottom: 3px;
  57.     padding-bottom: 2px;
  58.     font-size: 1.05em;
  59.     color: #989898;
  60.     margin-top: 20px;
  61. }
  62.  
  63. h4 {
  64.     /* Forum and topic list titles */
  65.     font-family: "Trebuchet MS", Verdana, Helvetica, Arial, Sans-serif;
  66.     font-size: 1.3em;
  67. }
  68.  
  69. p {
  70.     line-height: 1.3em;
  71.     font-size: 1.1em;
  72.     margin-bottom: 1.5em;
  73. }
  74.  
  75. img {
  76.     border-width: 0;
  77. }
  78.  
  79. hr {
  80.     /* Also see tweaks.css */
  81.     border: 0 none #FFFFFF;
  82.     border-top: 1px solid #CCCCCC;
  83.     height: 1px;
  84.     margin: 5px 0;
  85.     display: block;
  86.     clear: both;
  87. }
  88.  
  89. hr.dashed {
  90.     border-top: 1px dashed #CCCCCC;
  91.     margin: 10px 0;
  92. }
  93.  
  94. hr.divider {
  95.     display: none;
  96. }
  97.  
  98. p.right {
  99.     text-align: right;
  100. }
  101.  
  102. /* Main blocks
  103. ---------------------------------------- */
  104. #wrap{
  105.     padding: 0;
  106.     min-width: 650px;
  107.     width: auto;
  108.     margin: 0;
  109. }
  110.  
  111. .wrap2 {
  112.     padding: 0;
  113.     min-width: 650px;
  114.     width: 990px;
  115.     margin: 0 auto;
  116. }
  117.  
  118. #wrap3 {
  119.     padding: 5px 5px;
  120.     min-width: 650px;
  121.     width: 990px;
  122.     margin: 5px auto;                /* This center aligns your wrap width on the browser page */
  123.     background-color: #131311;     /* Gives the wrap a white background */
  124.     border-radius: 3px;    /* The Rounded corners for all modern browsers */   
  125. }
  126.  
  127. #simple-wrap {
  128.     padding: 6px 10px;
  129. }
  130.  
  131. #page-body {
  132.     margin: 4px 0;
  133.     clear: both;
  134. }
  135.  
  136. #page-footer {
  137.     clear: both;
  138. }
  139.  
  140. #page-footer h3 {
  141.     margin-top: 20px;
  142. }
  143.  
  144. #logo {
  145.     float: left;
  146.     width: 952px;
  147.     padding: 10px 13px 0 10px;
  148. }
  149.  
  150. a#logo:hover {
  151.     text-decoration: none;
  152. }
  153.  
  154. /* Search box
  155. --------------------------------------------- */
  156. #search-box {
  157.     color: #FFFFFF;
  158.     position: relative;
  159.     margin-top: 30px;
  160.     margin-right: 5px;
  161.     display: block;
  162.     float: right;
  163.     text-align: right;
  164.     white-space: nowrap; /* For Opera */
  165. }
  166.  
  167. #search-box #keywords {
  168.     width: 95px;
  169.     background-color: #FFF;
  170. }
  171.  
  172. #search-box input {
  173.     border: 1px solid #b0b0b0;
  174. }
  175.  
  176. /* .button1 style defined later, just a few tweaks for the search button version */
  177. #search-box input.button1 {
  178.     padding: 1px 5px;
  179. }
  180.  
  181. #search-box li {
  182.     text-align: right;
  183.     margin-top: 4px;
  184. }
  185.  
  186. #search-box img {
  187.     vertical-align: middle;
  188.     margin-right: 3px;
  189. }
  190.  
  191. /* Site description and logo */
  192. #site-description {
  193.     float: left;
  194.     width: auto;
  195. }
  196.  
  197. #site-description h1 {
  198.     margin-right: 0;
  199. }
  200.  
  201. /* Round cornered boxes and backgrounds
  202. ---------------------------------------- */
  203. .headerbar {
  204.     background: #ebebeb none repeat-x 0 0;
  205.     color: #FFFFFF;
  206.     margin-bottom: 4px;
  207.     padding: 0 5px;
  208. }
  209.  
  210. .navbar {
  211.     background-color: #ebebeb;
  212.     padding: 0 10px;
  213. }
  214.  
  215. .forabg {
  216.     background: #b1b1b1 none repeat-x 0 0;
  217.     margin-bottom: 4px;
  218.     padding: 0 5px;
  219.     clear: both;
  220. }
  221.  
  222. .forumbg {
  223.     background: #ebebeb none repeat-x 0 0;
  224.     margin-bottom: 4px;
  225.     padding: 0 5px;
  226.     clear: both;
  227. }
  228.  
  229. .panel {
  230.     margin-bottom: 4px;
  231.     padding: 0 10px;
  232.     background-color: #f3f3f3;
  233.     color: #3f3f3f;
  234. }
  235.  
  236. .post {
  237.     padding: 0 10px;
  238.     margin-bottom: 4px;
  239.     background-repeat: no-repeat;
  240.     background-position: 100% 0;
  241. }
  242.  
  243. .post:target .content {
  244.     color: #000000;
  245. }
  246.  
  247. .post:target h3 a {
  248.     color: #000000;
  249. }
  250.  
  251. .bg1    { background-color: #f7f7f7;}
  252. .bg2    { background-color: #f2f2f2; }
  253. .bg3    { background-color: #ebebeb; }
  254.  
  255. .rowbg {
  256.     margin: 5px 5px 2px 5px;
  257. }
  258.  
  259. .ucprowbg {
  260.     background-color: #e2e2e2;
  261. }
  262.  
  263. .fieldsbg {
  264.     /*border: 1px #DBDEE2 solid;*/
  265.     background-color: #eaeaea;
  266. }
  267.  
  268. span.corners-top, span.corners-bottom, span.corners-top span, span.corners-bottom span {
  269.     font-size: 1px;
  270.     line-height: 1px;
  271.     display: block;
  272.     height: 5px;
  273.     background-repeat: no-repeat;
  274. }
  275.  
  276. span.corners-top {
  277.     background-image: none;
  278.     background-position: 0 0;
  279.     margin: 0 -5px;
  280. }
  281.  
  282. span.corners-top span {
  283.     background-image: none;
  284.     background-position: 100% 0;
  285. }
  286.  
  287. span.corners-bottom {
  288.     background-image: none;
  289.     background-position: 0 100%;
  290.     margin: 0 -5px;
  291.     clear: both;
  292. }
  293.  
  294. span.corners-bottom span {
  295.     background-image: none;
  296.     background-position: 100% 100%;
  297. }
  298.  
  299. .headbg span.corners-bottom {
  300.     margin-bottom: -1px;
  301. }
  302.  
  303. .post span.corners-top, .post span.corners-bottom, .panel span.corners-top, .panel span.corners-bottom, .navbar span.corners-top, .navbar span.corners-bottom {
  304.     margin: 0 -10px;
  305. }
  306.  
  307. .rules span.corners-top {
  308.     margin: 0 -10px 5px -10px;
  309. }
  310.  
  311. .rules span.corners-bottom {
  312.     margin: 5px -10px 0 -10px;
  313. }
  314.  
  315. /* Horizontal lists
  316. ----------------------------------------*/
  317. ul.linklist {
  318.     display: block;
  319.     margin: 0;
  320. }
  321.  
  322. ul.linklist li {
  323.     display: block;
  324.     list-style-type: none;
  325.     float: left;
  326.     width: auto;
  327.     margin-right: 5px;
  328.     font-size: 1.1em;
  329.     line-height: 2.2em;
  330. }
  331.  
  332. ul.linklist li.rightside, p.rightside {
  333.     float: right;
  334.     margin-right: 0;
  335.     margin-left: 5px;
  336.     text-align: right;
  337. }
  338.  
  339. ul.navlinks {
  340.     padding-bottom: 1px;
  341.     margin-bottom: 1px;
  342.     border-bottom: 1px solid #FFFFFF;
  343.     font-weight: bold;
  344. }
  345.  
  346. ul.leftside {
  347.     float: left;
  348.     margin-left: 0;
  349.     margin-right: 5px;
  350.     text-align: left;
  351. }
  352.  
  353. ul.rightside {
  354.     float: right;
  355.     margin-left: 5px;
  356.     margin-right: -5px;
  357.     text-align: right;
  358. }
  359.  
  360. /* Table styles
  361. ----------------------------------------*/
  362. table.table1 {
  363.     /* See tweaks.css */
  364. }
  365.  
  366. #ucp-main table.table1 {
  367.     padding: 2px;
  368. }
  369.  
  370. table.table1 thead th {
  371.     font-weight: normal;
  372.     text-transform: uppercase;
  373.     color: #FFFFFF;
  374.     line-height: 1.3em;
  375.     font-size: 1em;
  376.     padding: 0 0 4px 3px;
  377. }
  378.  
  379. table.table1 thead th span {
  380.     padding-left: 7px;
  381. }
  382.  
  383. table.table1 tbody tr {
  384.     border: 1px solid #cfcfcf;
  385. }
  386.  
  387. table.table1 tbody tr:hover, table.table1 tbody tr.hover {
  388.     background-color: #f6f6f6;
  389.     color: #000;
  390. }
  391.  
  392. table.table1 td {
  393.     color: #6a6a6a;
  394.     font-size: 1.1em;
  395. }
  396.  
  397. table.table1 tbody td {
  398.     padding: 5px;
  399.     border-top: 1px solid #FAFAFA;
  400. }
  401.  
  402. table.table1 tbody th {
  403.     padding: 5px;
  404.     border-bottom: 1px solid #000000;
  405.     text-align: left;
  406.     color: #333333;
  407.     background-color: #FFFFFF;
  408. }
  409.  
  410. /* Specific column styles */
  411. table.table1 .name      { text-align: left; }
  412. table.table1 .posts     { text-align: center !important; width: 7%; }
  413. table.table1 .joined    { text-align: left; width: 15%; }
  414. table.table1 .active    { text-align: left; width: 15%; }
  415. table.table1 .mark      { text-align: center; width: 7%; }
  416. table.table1 .info      { text-align: left; width: 30%; }
  417. table.table1 .info div  { width: 100%; white-space: normal; overflow: hidden; }
  418. table.table1 .autocol   { line-height: 2em; white-space: nowrap; }
  419. table.table1 thead .autocol { padding-left: 1em; }
  420.  
  421. table.table1 span.rank-img {
  422.     float: right;
  423.     width: auto;
  424. }
  425.  
  426. table.info td {
  427.     padding: 3px;
  428. }
  429.  
  430. table.info tbody th {
  431.     padding: 3px;
  432.     text-align: right;
  433.     vertical-align: top;
  434.     color: #000000;
  435.     font-weight: normal;
  436. }
  437.  
  438. .forumbg table.table1 {
  439.     margin: 0;
  440. }
  441.  
  442. .forumbg-table > .inner {
  443.     margin: 0 -1px;
  444. }
  445.  
  446. .forumbg-table > .inner > span.corners-top {
  447.     margin: 0 -4px -1px -4px;
  448. }
  449.  
  450. .forumbg-table > .inner > span.corners-bottom {
  451.     margin: -1px -4px 0 -4px;
  452. }
  453.  
  454. /* Misc layout styles
  455. ---------------------------------------- */
  456. /* column[1-2] styles are containers for two column layouts
  457.    Also see tweaks.css */
  458. .column1 {
  459.     float: left;
  460.     clear: left;
  461.     width: 49%;
  462. }
  463.  
  464. .column2 {
  465.     float: right;
  466.     clear: right;
  467.     width: 49%;
  468. }
  469.  
  470. /* General classes for placing floating blocks */
  471. .left-box {
  472.     float: left;
  473.     width: auto;
  474.     text-align: left;
  475. }
  476.  
  477. .right-box {
  478.     float: right;
  479.     width: auto;
  480.     text-align: right;
  481. }
  482.  
  483. dl.details {
  484.     /*font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;*/
  485.     font-size: 1.1em;
  486. }
  487.  
  488. dl.details dt {
  489.     float: left;
  490.     clear: left;
  491.     width: 30%;
  492.     text-align: right;
  493.     color: #000000;
  494.     display: block;
  495. }
  496.  
  497. dl.details dd {
  498.     margin-left: 0;
  499.     padding-left: 5px;
  500.     margin-bottom: 5px;
  501.     color: #828282;
  502.     float: left;
  503.     width: 65%;
  504. }
  505.  
  506. /* Pagination
  507. ---------------------------------------- */
  508. .pagination {
  509.     height: 1%; /* IE tweak (holly hack) */
  510.     width: auto;
  511.     text-align: right;
  512.     margin-top: 5px;
  513.     float: right;
  514. }
  515.  
  516. .pagination span.page-sep {
  517.     display: none;
  518. }
  519.  
  520. li.pagination {
  521.     margin-top: 0;
  522. }
  523.  
  524. .pagination strong, .pagination b {
  525.     font-weight: normal;
  526. }
  527.  
  528. .pagination span strong {
  529.     padding: 0 2px;
  530.     margin: 0 2px;
  531.     font-weight: normal;
  532.     color: #FFFFFF;
  533.     background-color: #bfbfbf;
  534.     border: 1px solid #bfbfbf;
  535.     font-size: 0.9em;
  536. }
  537.  
  538. .pagination span a, .pagination span a:link, .pagination span a:visited, .pagination span a:active {
  539.     font-weight: normal;
  540.     text-decoration: none;
  541.     color: #747474;
  542.     margin: 0 2px;
  543.     padding: 0 2px;
  544.     background-color: #eeeeee;
  545.     border: 1px solid #bababa;
  546.     font-size: 0.9em;
  547.     line-height: 1.5em;
  548. }
  549.  
  550. .pagination span a:hover {
  551.     border-color: #d2d2d2;
  552.     background-color: #d2d2d2;
  553.     color: #FFF;
  554.     text-decoration: none;
  555. }
  556.  
  557. .pagination img {
  558.     vertical-align: middle;
  559. }
  560.  
  561. /* Pagination in viewforum for multipage topics */
  562. .row .pagination {
  563.     display: block;
  564.     float: right;
  565.     width: auto;
  566.     margin-top: 0;
  567.     padding: 1px 0 1px 15px;
  568.     font-size: 0.9em;
  569.     background: none 0 50% no-repeat;
  570. }
  571.  
  572. .row .pagination span a, li.pagination span a {
  573.     background-color: #FFFFFF;
  574. }
  575.  
  576. .row .pagination span a:hover, li.pagination span a:hover {
  577.     background-color: #d2d2d2;
  578. }
  579.  
  580. /* Miscellaneous styles
  581. ---------------------------------------- */
  582. #forum-permissions {
  583.     float: right;
  584.     width: auto;
  585.     padding-left: 5px;
  586.     margin-left: 5px;
  587.     margin-top: 10px;
  588.     text-align: right;
  589. }
  590.  
  591. .copyright {
  592.     padding: 5px;
  593.     text-align: center;
  594.     color: #555555;
  595. }
  596.  
  597. .small {
  598.     font-size: 0.9em !important;
  599. }
  600.  
  601. .titlespace {
  602.     margin-bottom: 15px;
  603. }
  604.  
  605. .headerspace {
  606.     margin-top: 20px;
  607. }
  608.  
  609. .error {
  610.     color: #bcbcbc;
  611.     font-weight: bold;
  612.     font-size: 1em;
  613. }
  614.  
  615. .reported {
  616.     background-color: #f7f7f7;
  617. }
  618.  
  619. li.reported:hover {
  620.     background-color: #ececec;
  621. }
  622.  
  623. div.rules {
  624.     background-color: #ececec;
  625.     color: #bcbcbc;
  626.     padding: 0 10px;
  627.     margin: 10px 0;
  628.     font-size: 1.1em;
  629. }
  630.  
  631. div.rules ul, div.rules ol {
  632.     margin-left: 20px;
  633. }
  634.  
  635. p.rules {
  636.     background-color: #ececec;
  637.     background-image: none;
  638.     padding: 5px;
  639. }
  640.  
  641. p.rules img {
  642.     vertical-align: middle;
  643.     padding-top: 5px;
  644. }
  645.  
  646. p.rules a {
  647.     vertical-align: middle;
  648.     clear: both;
  649. }
  650.  
  651. #top {
  652.     position: absolute;
  653.     top: -20px;
  654. }
  655.  
  656. .clear {
  657.     display: block;
  658.     clear: both;
  659.     font-size: 1px;
  660.     line-height: 1px;
  661.     background: transparent;
  662. }
Advertisement
Add Comment
Please, Sign In to add comment