Advertisement
Guest User

style.css

a guest
Nov 6th, 2021
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 11.01 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Patua+One');
  2. body
  3. {
  4.   background: url(img/bg.png) no-repeat center top #191611;
  5.   margin: 0;
  6.   padding: 0;
  7.   font-size: 13px;
  8.   font-family: Tahoma,Verdana,Segoe,sans-serif;
  9.   color: #000000;
  10.   position: relative; /* usually the parent, in this case the body element, has position relative so that the absolute positioned child is positioned relative to it */
  11.   height: 100vh; /* 100% of the viewport height */
  12.   margin: 0; /* recommended */
  13. }
  14. a
  15. {
  16.     text-decoration: none;
  17.     color: #c64125;
  18.     transition: color 0.1s linear;
  19.    
  20. }
  21. a:hover
  22. {
  23.     color: #ff5a00;
  24. }
  25. ul {
  26.   margin: 2px 0 0 0;
  27.   padding: 0;
  28. }
  29. textarea{
  30. max-width: 530px !important;
  31. }
  32. ul li {
  33.   list-style-type: none;
  34.   margin: 0 0 6px 0;
  35.   padding: 0 0 4px 5px;
  36.   line-height: 1.5em;
  37. }
  38.  
  39. ol {
  40.   margin: 8px 0 5px 5px;
  41. }
  42.  
  43. ol li {
  44.   margin: 0 0 11px 0;
  45. }
  46.  
  47. .form_settings {
  48.   margin: 15px 0 0 0;
  49. }
  50.  
  51. .form_settings p {
  52.   padding: 0 0 4px 0;
  53. }
  54.  
  55. .form_settings span {
  56.   float: left;
  57.   width: 200px;
  58.   text-align: left;
  59. }
  60.  
  61. .form_settings input, .form_settings textarea {
  62.   padding: 5px;
  63.   width: 299px;
  64.   font: 100% arial;
  65.   border: 1px solid #E5E5DB;
  66.   background: #FFF;
  67.   color: #47433F;
  68.   border-radius: 7px 7px 7px 7px;
  69.   -moz-border-radius: 7px 7px 7px 7px;
  70.   -webkit-border: 7px 7px 7px 7px;  
  71. }
  72.  
  73. .form_settings .submit {
  74.   font: 100% arial;
  75.   border: 0;
  76.   width: 99px;
  77.   margin: 0 0 0 212px;
  78.   height: 33px;
  79.   padding: 2px 0 3px 0;
  80.   cursor: pointer;
  81.   background: #3B3B3B;
  82.   color: #FFF;
  83.   border-radius: 7px 7px 7px 7px;
  84.   -moz-border-radius: 7px 7px 7px 7px;
  85.   -webkit-border: 7px 7px 7px 7px;  
  86. }
  87.  
  88. .form_settings textarea, .form_settings select {
  89.   font: 100% arial;
  90.   width: 299px;
  91. }
  92.  
  93. .form_settings select {
  94.   width: 310px;
  95. }
  96.  
  97. .form_settings .checkbox {
  98.   margin: 4px 0;
  99.   padding: 0;
  100.   width: 14px;
  101.   border: 0;
  102.   background: none;
  103. }
  104.  
  105. .separator {
  106.   width: 100%;
  107.   height: 0;
  108.   border-top: 1px solid #D9D5CF;
  109.   border-bottom: 1px solid #FFF;
  110.   margin: 0 0 20px 0;
  111. }
  112.  
  113. table {
  114.   margin: 10px 0 30px 0;
  115.   width: 100%;
  116.   border-spacing: 1px;
  117.   border-collapse: separate;
  118. }
  119.  
  120. table.no-spacing {
  121.   border-spacing:0; /* Removes the cell spacing via CSS */
  122.   border-collapse: collapse;  /* Optional - if you don't want to have double border where cells touch */
  123. }
  124.  
  125. table tr th{
  126.   background: #31261D;
  127.   color: #FFF;
  128.   padding: 7px 4px;
  129.   text-align: left;
  130. }
  131.  
  132. tr.yellow td {
  133.   background: #31261D;
  134.   color: #FFF;
  135.   padding: 7px 4px;
  136.   text-align: left;
  137. }
  138. table tr td {  
  139.   background: #E1D3C4;
  140.   color: #47433F;
  141. }
  142. table.stripped tr:nth-child(even) td {
  143.   background-color: #afa9a0 ;
  144. }
  145. table.stripped tr:nth-child(odd) td{
  146.   background-color: #E1D3C4;
  147. }
  148. table.TableContent tr td , table.Table3 tr td {  
  149.   background: #f1e0c5;
  150. }
  151. table.TableContent tr.LabelH td {  
  152.   background: #E1D3C4;
  153. }
  154. .TableContainer table{
  155.   margin: 0 !important;
  156. }
  157. .TableContainer td {
  158.   padding: 2px 3px !important;
  159. }
  160. table tr td img{
  161.   max-width: 520px;
  162. }
  163. input.hover:hover
  164. {
  165.     cursor: pointer;
  166. }
  167. /* guild war */
  168. tr.special:hover td {
  169.    background: orange;
  170. }
  171.  
  172. tr.special {
  173.     cursor: pointer;
  174. }
  175.  
  176. ul.war_list li {
  177.    font-size:18px;
  178. }
  179.  
  180. .container_main
  181. {
  182.     width: 1170px;
  183.     margin: 350px auto 0 auto;
  184. }
  185. .container_left, .container_right
  186. {
  187.     width: 240px;
  188.     float: left;
  189.     margin: 0px 0 0 0;
  190. }
  191. .container_mid
  192. {
  193.     min-height: 200px;
  194.     width: 648px;
  195.     float: left;
  196.     margin: 0 15px;
  197. }
  198. .left_box, .right_box, .center_box
  199. {
  200.     width: 100%;
  201.     background: url(img/border_left.png) repeat-y left top, url(img/border_right.png) repeat-y right top;
  202.     position: relative;
  203.     margin-bottom: 18px;
  204. }
  205. .corner_lt, .corner_rt, .corner_rb, .corner_lb
  206. {
  207.     z-index: 5;
  208. }
  209. .corner_lt
  210. {
  211.     position: absolute;
  212.     width: 64px;
  213.     height:64px;
  214.     background: url(img/corners.png) no-repeat 0 0;
  215.     left: -7px;
  216.     top: -5px;
  217. }
  218. .corner_rt
  219. {
  220.     position: absolute;
  221.     width: 64px;
  222.     height:64px;
  223.     background: url(img/corners.png) no-repeat -64px 0;
  224.     right: -7px;
  225.     top: -5px;
  226. }
  227. .corner_rb
  228. {
  229.     position: absolute;
  230.     width: 64px;
  231.     height:64px;
  232.     background: url(img/corners.png) no-repeat -64px -64px;
  233.     right: -7px;
  234.     bottom: -5px;
  235. }
  236. .corner_lb
  237. {
  238.     position: absolute;
  239.     width: 64px;
  240.     height:64px;
  241.     background: url(img/corners.png) no-repeat 0 -64px;
  242.     left: -7px;
  243.     bottom: -5px;
  244. }
  245. .left_box .content, .right_box .content
  246. {
  247.     margin: -1px 20px;
  248.     width: 206px;
  249.     padding: 3px 3px;
  250.     background: url(img/widget_bg.png) repeat-y;
  251. }
  252. .center_box .content_bg
  253. {
  254.     width: 608px;
  255.     margin: -1px 20px;
  256.     position: relative;
  257.     background: url(img/mid_bot.png) no-repeat center bottom, url(img/mid_top.png) no-repeat center top, url(img/mid_mid.png) repeat-y center top;
  258.     color: #531e01;
  259. }
  260. .center_box .content_bg .content
  261. {
  262.     padding: 6px 8px;
  263. }
  264.  
  265. .left_box .border_bottom, .right_box .border_bottom,  .center_box .border_bottom
  266. {
  267.     background: url(img/border_bottom.png) repeat-x center bottom;
  268.     width: 100%;
  269.     display: block;
  270.     height: 20px;
  271. }
  272. .left_box .title, .right_box .title,  .center_box .title
  273. {
  274.     background: url(img/border_top.png) repeat-x center top;
  275.     width: 100%;
  276.     height: 45px;
  277.     position: relative;
  278. }
  279. .rise-up-content
  280. {
  281.     position: relative;
  282.     z-index: 10;
  283. }
  284. .left_box ul li a:after
  285. {
  286.     content: "";
  287.     width: 100%;
  288.     background: url(img/line.png) no-repeat center top;
  289.     height: 2px;
  290.     display: block;
  291.     margin-left: -10px;
  292. }
  293.  
  294. .right_box ul li a:after
  295. {
  296.     content: "";
  297.     width: 100%;
  298.     background: url(img/line.png) no-repeat center top;
  299.     height: 2px;
  300.     display: block;
  301.     margin-left: -10px;
  302. }
  303. .title span
  304. {
  305.     width: 100%;
  306.     height: 45px;
  307.     display: block;
  308.     background-position: center center;
  309.     background-repeat: no-repeat;
  310. }
  311. .title img
  312. {
  313.     position: absolute;
  314.     left: 20px;
  315.     top: 6px;
  316.     z-index: 6;
  317. }
  318. .left_box ul
  319. {
  320.     list-style: none;
  321.     padding: 0;
  322.     margin: 0 0 0 8px;
  323. }
  324. .left_box ul li
  325. {
  326.     padding: 1.5px 0 2px 0;
  327.     margin: 0;
  328. }
  329. .left_box ul li a
  330. {
  331.     display: block;
  332.     color: #e7e7e7;
  333.     text-shadow: 1px 1px 0 #000;
  334.     transition: all 0.1s linear;
  335. }
  336. .left_box ul li a:hover
  337. {
  338.     color: orange;
  339.     padding-left: 3px;
  340.    
  341. }
  342. .inputtext
  343. {
  344.     width: 158px;
  345.     height: 33px;
  346.     background: url(img/quicklogin_input.png);
  347.     padding: 0 10px;
  348.     margin: 0 0 4px 11px;
  349.     border: 0 none;
  350.     color: #9c7d54;
  351.     font-size: 12px;
  352.     text-shadow: 1px 1px 0 #000;
  353. }
  354. .loginbtn
  355. {
  356.     width: 83px;
  357.     height: 23px;
  358.     background: url(img/login_btn.png) 0 -23px;
  359.     padding: 0;
  360.     margin: 0 0 4px 12px;
  361.     border: 0 none;
  362.     display: inline-block;
  363.     vertical-align: middle;
  364. }
  365. .loginbtn:hover
  366. {
  367.     cursor: pointer;
  368.     background-position: 0 0;
  369. }
  370. .loginbtn2
  371. {
  372.     width: 83px;
  373.     height: 23px;
  374.     background: url(img/login_btn2.png) 0 -23px;
  375.     padding: 0;
  376.     margin: 0 0 4px 12px;
  377.     border: 0 none;
  378.     display: inline-block;
  379.     vertical-align: middle;
  380. }
  381. .loginbtn2:hover
  382. {
  383.     cursor: pointer;
  384.     background-position: 0 0;
  385. }
  386. .createbtn
  387. {
  388.     vertical-align: middle;
  389.     display: inline-block;
  390.     width: 83px;
  391.     height: 23px;
  392.     background: url(img/register_btn.png) 0 -23px;
  393.     padding: 0;
  394.     margin: 0 0 4px 7px;
  395.     border: 0 none;
  396. }
  397. .createbtn:hover
  398. {
  399.     cursor: pointer;
  400.     background-position: 0 0;
  401. }
  402. .createbtn2
  403. {
  404.     vertical-align: middle;
  405.     display: inline-block;
  406.     width: 83px;
  407.     height: 23px;
  408.     background: url(img/register_btn2.png) 0 -23px;
  409.     padding: 0;
  410.     margin: 0 0 4px 7px;
  411.     border: 0 none;
  412. }
  413. .createbtn:hover
  414. {
  415.     cursor: pointer;
  416.     background-position: 0 0;
  417. }
  418. .download_client
  419. {
  420.     display: block;
  421.     width: 250px;
  422.     height: 59px;
  423.     background: url(img/download_btn.png) no-repeat 0 -59px;
  424.     margin: 0 0 10px -2px;
  425. }
  426. .download_client:hover
  427. {
  428.     background-position: 0 0;
  429. }
  430. .right_box
  431. {
  432.     text-shadow: 0 1px 0 #000;
  433. }
  434. .right_box a
  435. {
  436.     color: #e7e7e7;
  437.     transition: color 0.1s linear;
  438. }
  439. .right_box ul li a:hover
  440. {
  441.     color: orange;
  442.     padding-left: 3px;
  443.    
  444. }
  445. table.sinfotable
  446. {
  447.     margin: 0 8px;
  448.     font-size: 13px;
  449.     width: 183px;
  450. }
  451. table.sinfotable td
  452. {
  453.     border-bottom: 1px solid #4c4b46;
  454.     border-top: 1px solid #1c1c1a;
  455.     background: none transparent;
  456.     color: #fff;
  457.     padding: 4px 0;
  458. }
  459. ul.toplvl
  460. {
  461.     list-style: none;
  462.     margin: 0 8px;
  463.     display: block;
  464. }
  465. ul.toplvl li
  466. {
  467.     padding: 1px 0;
  468.     margin: 0;
  469. }
  470. .lvl
  471. {
  472.     display: block;
  473.     background: #cc7e0f;
  474.     float: right;
  475.     height: 15px;
  476.     line-height: 14px;
  477.     color: #fff;
  478.     text-shadow: 0 0 5px #000;
  479.     padding: 0px 5px;
  480.     border-radius: 4px;
  481.     box-shadow: 0 1px 0 #101010;
  482.     border-top: 1px solid #ffc36d;
  483. }
  484. .acc_menu
  485. {
  486.     width: 183px;
  487.     margin: 0 8px;
  488. }
  489. .acc_menu a
  490. {
  491.     box-sizing: border-box;
  492.     display: inline-block;
  493.     width: 100%;
  494.     padding: 3px 0;
  495.     font-size: 12px;
  496.     text-align: center;
  497.     background: rgba(0,0,0,0.3);
  498.     border: 1px solid rgba(0,0,0,0.4);
  499.     box-shadow: 0 1px 3px rgba(255,255,255,0.2) inset, 0 -1px 3px rgba(0,0,0,0.5) inset;
  500.     border-radius: 3px;
  501.     color: #fff;
  502.     transition: all 0.1s linear;
  503.     margin: 1px 0;
  504. }
  505. .acc_menu a:hover
  506. {
  507.     background: rgba(0,0,0,0.4);
  508. }
  509. .footer_cnt
  510. {
  511.     width: 1170px;
  512.     float: left;
  513.     margin: 20px 0 70px 0;
  514. }
  515.  
  516.  
  517.  
  518. /* SLIDER */
  519.  
  520. .slider
  521. {
  522.     width: 207px;
  523.     height: 100px;
  524.     margin-left: -3px;
  525.     margin-top: -3px;
  526.     margin-bottom: -2px;
  527. }
  528.  
  529. #slides
  530. {
  531.     display: none;
  532.     width: 207px;
  533.     height: 100px;
  534.     float: left;
  535.     z-index: 90;
  536.     overflow: initial !important;
  537.     position: relative;
  538. }
  539. .slidesjs-pagination
  540. {
  541.     z-index: 999;
  542.     position: absolute;
  543.     bottom: 5px;
  544.     right: 5px;
  545. }
  546. ul.slidesjs-pagination
  547. {
  548.     list-style: none;
  549.     padding: 3px;
  550.     border-radius: 5px;
  551.     margin: 0;
  552.     background: rgba(0,0,0,0.5);
  553. }
  554. .slidesjs-pagination li
  555. {
  556.     float: left;
  557.     margin: 0 3px;
  558.     padding: 0;
  559. }
  560. .slidesjs-pagination li a
  561. {
  562.     background: rgba(255,255,255,0.3);
  563.     display: block;
  564.     width: 10px;
  565.     height: 10px;
  566.     float: left;
  567.     overflow: hidden;
  568.     text-indent: -999999999px;
  569.     line-height: 99px;
  570.     color: rgba(0,0,0,0.6);
  571.     border-radius: 15px;
  572. }
  573. .slidesjs-pagination li a:hover
  574. {
  575.     background: rgba(255,255,255,0.5);
  576. }
  577. .slidesjs-pagination li a.active
  578. {
  579.     background: rgba(255,255,255,0.5);
  580. }
  581. .top-bar
  582. {
  583.     position: fixed;
  584.     z-index: 200;
  585.     top: 0;
  586.     left: 0;
  587.     width: 100%;
  588.     text-align: center;
  589.     font-family: 'Patua One', cursive;
  590.     height: 30px;
  591.     line-height: 30px;
  592.     background: rgba(0,0,0,0.3);
  593.     color: #fff;
  594.     text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, 1px 0px 0 #000, -1px 0px 0 #000, -1px 0px 0 #000;
  595.     font-weight: normal;
  596.     font-size: 18px;
  597. }
  598. .top-bar a
  599. {
  600.     color: #f66545;
  601. }
  602.  
  603. hr {
  604.     height: 4px;
  605.     color: #afa9a0;
  606.     background-color: #afa9a0;
  607.     border: none;
  608.     opacity: 0.1;
  609.     margin-bottom: 5px;
  610. }
  611.  
  612. cnt {
  613.  position: absolute; /* taken out of the normal flow of the document */
  614.  transform: translateY(-50%); /* moved back up (Y axis) by half of its height to achieve the perfect center */
  615.  width: 100%; /* needs to be defined to keep the default block behavior */
  616.  text-align: center;
  617.  margin: 0; /* again, for perfect center */
  618.  bottom:-60;
  619.  opacity: 0.6;
  620. }
  621.  
  622. hsc {
  623.   padding: 0;
  624.   margin : 0;
  625.   line-height : 20px;
  626.   font-size : 11px;
  627. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement