Advertisement
Shieldxx

r/Hattrick test 0.0.1.2

Jun 5th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 17.58 KB | None | 0 0
  1. /*HEADER BACKGROUND*/
  2.  
  3. #header-bottom-left {
  4.     height: 195px;
  5. }
  6. #header {
  7.     height: 220px;
  8.     background: url(%%background%%);
  9.     background-size: cover;
  10.     border: none;
  11.     /*shadow*/
  12. }
  13. /*END HEADER BACKGROUND*/
  14. /*HEADER LOGO*/
  15.  
  16. #header .pagename a {
  17.     position: absolute;
  18.     top: 60px;
  19.     left: 50%;
  20.     margin-left: -108px;
  21.     background: url(%%htlogo%%);
  22.     background-position: 0 0;
  23.     background-repeat: no-repeat;
  24.     width: 272px;
  25.     height: 68px;
  26.     text-indent: -9999px;
  27.     font-size: 0px;
  28. }
  29. /*END HEADER LOGO*/
  30. /*HEADER*/
  31.  
  32. *,
  33. :before,
  34. :after {
  35.     -webkit-box-sizing: border-box;
  36.     -moz-box-sizing: border-box;
  37.     box-sizing: border-box;
  38. }
  39. /*END HEADER*/
  40. /*REDDIT ICON*/
  41.  
  42. #header-img.default-header,
  43. #header-img {
  44.     z-index: 99;
  45.     width: 48px;
  46.     padding-left: 48px;
  47.     height: 54px;
  48.     background-image: url(%%redditlogoht%%);
  49.     background-size: cover;
  50.     background-position: center;
  51.     position: relative;
  52. }
  53. #header-img {
  54.     margin-top: 140px;
  55.     margin-left: 20px;
  56. }
  57. /*SUBREDITS LISTA*/
  58.  
  59. #sr-header-area {
  60.     background-color: rgba(0, 0, 0, 0.05);
  61.     border: 0 solid;
  62.     transition: all .15s ease;
  63.     height: 24px;
  64.     line-height: 23px;
  65.     text-transform: uppercase;
  66. }
  67. #sr-header-area .sr-list {
  68.     margin-right: 48px;
  69. }
  70. #sr-header-area .width-clip {
  71.     right: 300px;
  72. }
  73. #sr-more-link {
  74.     background-color: transparent
  75. }
  76. #sr-more-link {
  77.     top: 5px;
  78. }
  79. /*RIGHT SIDEBAR*/
  80.  
  81. .side {
  82.     float: right;
  83.     background-color: white;
  84.     margin: 0px 10px 0 5px;
  85.     width: 300px;
  86.     position: relative;
  87.     top: 0px;
  88. }
  89. body > .content {
  90.     margin: 15px 5px 0;
  91. }
  92. /*LOGOUT BAR*/
  93.  
  94. #header-bottom-right {
  95.     position: absolute;
  96.     top: 0;
  97.     right: 0;
  98.     width: auto;
  99.     max-width: 300px;
  100.     height: 24px;
  101.     background-color: #1A804E;
  102.     font-size: 11px;
  103.     color: rgba(255, 255, 255, 0.45);
  104.     padding: 6px 9px 0px 5px;
  105.     border-top-left-radius: 0px;
  106. }
  107. a {
  108.     text-decoration: none;
  109.     color: white;
  110. }
  111. .separator {
  112.     color: transparent;
  113. }
  114. .user {
  115.     color: rgba(255, 202, 42, 0.8);
  116. }
  117. /*MENU*/
  118. /*MENU TABS DELETE*/
  119.  
  120. .listing-page .tabmenu li:nth-child(3),
  121. .listing-page .tabmenu li:nth-child(4),
  122. .listing-page .tabmenu li:nth-child(5),
  123. .listing-page .tabmenu li:nth-child(6),
  124. .listing-page .tabmenu li:nth-child(8),
  125. .listing-page .tabmenu li:nth-child(9) {
  126.     display: none;
  127. }
  128. #header .tabmenu li {
  129.     margin: 0;
  130. }
  131. #header .tabmenu a {
  132.     margin: 0 3px;
  133. }
  134. /*END MENU TABS DELETE*/
  135. /*MENU BG*/
  136.  
  137. #header .tabmenu:before {
  138.     content: "";
  139.     display: block;
  140.     position: absolute;
  141.     top: 170px;
  142.     left: 0px;
  143.     right: 0px;
  144.     background-color: rgba(0, 0, 0, 0.24);
  145.     height: 42px;
  146.     z-index: -1;
  147. }
  148. /*END MENU BG*/
  149.  
  150. #header .tabmenu li a {
  151.     display: inline-block;
  152.     height: 42px;
  153.     vertical-align: top;
  154.     color: #E6E6E6;
  155.     background-color: transparent;
  156.     border: none;
  157.     transition: color .25s ease, background-color .25s ease;
  158.     padding: 0 13px;
  159.     font-family: Lato, arial, sans-serif;
  160.     text-transform: uppercase;
  161.     font-weight: bold;
  162.     font-size: 15px;
  163. }
  164. #header .tabmenu .selected a {
  165.     color: white;
  166.     background-color: transparent;
  167.     border-top: 3px solid rgba(18, 129, 77, 0.5)!important;
  168.     background: url(%%tabsimg%%);
  169. }
  170. .tabmenu li {
  171.     margin: 0px 30px;
  172.     display: inline-block;
  173.     top: -25px;
  174. }
  175. #header .tabmenu li a:hover,
  176. .pagename a:hover {
  177.     background-color: rgba(0, 0, 0, 0.12);
  178.     background: url(%%tabsimghover%%);
  179. }
  180. #header .tabmenu li a:hover {
  181.     color: rgba(255, 255, 255, 1);
  182.     background-color: rgba(0, 0, 0, 0.08);
  183. }
  184. /*GAVIN19 MENU MINIMIZED FIX*/
  185.  
  186. #header .tabmenu {
  187.     position: absolute;
  188.     top: 182px;
  189.     left: 0;
  190.     right: 6px;
  191.     line-height: 42px;
  192.     margin: -6px;
  193.     max-height: 42px;
  194.     overflow: hidden;
  195.     padding-left: 70px;
  196.     white-space: normal;
  197.     z-index: 90;
  198.     text-align: center!important
  199. }
  200. #header .tabmenu:before {
  201.     bottom: 0;
  202.     top: auto;
  203. }
  204. #header .tabmenu li {
  205.     margin: 0;
  206.     padding: 0 2%;
  207.     /*menu offset*/
  208.    
  209.     top: 0;
  210. }
  211. /*END GAVIN19 MENU MINIMIZED FIX*/
  212. /*END MENU*/
  213. /* PRETTY SUBMIT LINKS by /u/RainbowCrash*/
  214.  
  215. .morelink {
  216.     font-weight: normal;
  217.     letter-spacing: 0;
  218.     background: #08B36D;
  219.     border: none;
  220.     -moz-border-radius: 2px;
  221.     -webkit-border-radius: 2px;
  222.     -o-border-radius: 2px;
  223.     -ms-border-radius: 2px;
  224.     -khtml-border-radius: 2px;
  225.     border-radius: 1px;
  226.     height: 30px;
  227.     line-height: 30px;
  228.     overflow: hidden;
  229.     color: white;
  230.     box-shadow: 0 2px 1.5px 0 rgba(0, 0, 0, .12), 0 0 4px 0 rgba(0, 0, 0, .12);
  231.     transition: color .25s ease, background-color .25s ease;
  232. }
  233. .morelink:hover {
  234.     background: #078853;
  235.     background-color: #078853;
  236.     border-color: #078853;
  237. }
  238. .morelink .nub {
  239.     display: none;
  240. }
  241. .morelink {
  242.     color: #FFF;
  243.     font-family: Verdana, Arial, sans-serif;
  244.     font-size: 16px;
  245.     width: 145px;
  246. }
  247. .morelink a,
  248. .morelink a:hover {
  249.     color: white;
  250. }
  251. .sidebox.submit-link .morelink::before {
  252.     display: block;
  253.     clear: none;
  254.     content: "Submit a Link";
  255.     font-size: 95%;
  256. }
  257. .sidebox.submit-text .morelink::before {
  258.     display: block;
  259.     clear: none;
  260.     content: "Submit a Self Post";
  261.     font-size: 90%;
  262. }
  263. .sidebox.submit .morelink a {
  264.     position: absolute;
  265.     top: 0;
  266.     padding-left: 1000px;
  267.     font-size: 0px;
  268.     text-align: right;
  269.     color: #56a6f7;
  270. }
  271. .sidebox.submit.submit-link {
  272.     width: 150px;
  273. }
  274. .sidebox.submit.submit-text {
  275.     margin-top: -45px;
  276.     /*Edit this is the buttons aren't parallel*/
  277.    
  278.     margin-left: 153px;
  279. }
  280. .sidebox.create {
  281.     display: none;
  282. }
  283. .sidebox.submit.disabled {
  284.     display: none;
  285. }
  286. .side .spacer {
  287.     margin: 15px 0 12px 0;
  288. }
  289. /* NIGHTMODE FIXES */
  290.  
  291. .res-nightmode .sidebox.submit.submit-text {
  292.     background: none !important;
  293.     margin-top: -45px;
  294.     margin-left: 153px;
  295. }
  296. .res-nightmode .sidebox {
  297.     padding-left: 0px !important;
  298.     border: 2px solid #151515 !important;
  299. }
  300. .res-nightmode .morelink {
  301.     height: 29px !important;
  302. }
  303. .res-nightmode .morelink {
  304.     background: rgb(39, 63, 87) !important;
  305. }
  306. .res-nightmode .morelink:hover {
  307.     background: #449ef8 !important;
  308.     background-color: #9edbf8 !important;
  309.     border-color: #9edbf8 !important;
  310. }
  311. /* END NIGHTMODE FIX */
  312. /* END PRETTY SUBMIT LINKS */
  313. /*/r/naut buttons*/
  314.  
  315. button,
  316. #search input[type="submit"],
  317. .wiki-page .wiki-page-content .wiki_button {
  318.     margin: 3px 3px 3px -25px;
  319.     padding: 0px 8px 1px 8px;
  320.     background-color: #ffffff;
  321.     border: 1px solid #d4d4d4;
  322.     border-radius: 2px;
  323.     -webkit-box-shadow: 0 1px 0 #e2e0e0;
  324.     box-shadow: 0 1px 0 #e2e0e0;
  325.     color: #737373!important;
  326.     text-transform: capitalize;
  327.     font-weight: bold;
  328.     line-height: 26px;
  329.     cursor: default;
  330. }
  331. button:hover,
  332. #search input[type="submit"]:hover,
  333. .wiki-page .wiki-page-content .wiki_button:hover {
  334.     padding-bottom: 0px;
  335.     border-color: #bababa;
  336.     border-bottom-width: 2px;
  337.     color: #333!important;
  338. }
  339. button:active,
  340. #search input[type="submit"]:active,
  341. .wiki-page .wiki-page-content .wiki_button:active {
  342.     padding-bottom: 0px;
  343.     background-color: #e5e5e5;
  344.     border-color: #a7a7a7;
  345.     border-top-width: 2px;
  346.     border-bottom-width: 1px;
  347.     -webkit-box-shadow: none;
  348.     box-shadow: none;
  349.     color: #333!important;
  350.     line-height: 25px;
  351. }
  352. .res .blueButton {
  353.     padding: 2px 3px!important;
  354.     background-color: #53a93f!important;
  355.     border: none!important;
  356.     border-radius: 0px!important;
  357. }
  358. .RESSubscriptionButton {
  359.     background-color: white!important;
  360.     border: 0px solid!important;
  361.     border-radius: 0px!important;
  362.     color: #5b92fa!important;
  363. }
  364. /* Nightmode buttons*/
  365.  
  366. body.res-nightmode button,
  367. body.res-nightmode #search input[type="submit"],
  368. body.res-nightmode .wiki-page .wiki-page-content .wiki_button {
  369.     padding: 0px 8px 0px 8px;
  370.     background-color: transparent;
  371.     border: 1px solid #414955;
  372.     border-radius: 0px;
  373.     -webkit-box-shadow: none;
  374.     box-shadow: none;
  375.     color: #e5e5e5!important;
  376.     line-height: 28px;
  377. }
  378. body.res-nightmode button: hover,
  379. body.res-nightmode #search input[type="submit"]: hover,
  380. body.res-nightmode .wiki-page .wiki-page-content .wiki_button: hover {
  381.     padding-bottom: 0px;
  382.     border-color: #414955;
  383.     border-width: 1px;
  384.     color: #fff!important;
  385.     line-height: 28px;
  386.     background-color: #1C1F26;
  387. }
  388. body.res-nightmode button: active,
  389. body.res-nightmode #search input[type="submit"]: active,
  390. body.res-nightmode .wiki-page .wiki-page-content .wiki_button: active {
  391.     padding-bottom: 0px;
  392.     background-color: #1C1F26;
  393.     border-color: #414955;
  394.     border-width: 1px;
  395.     -webkit-box-shadow: none;
  396.     box-shadow: none;
  397.     color: #fff!important;
  398.     line-height: 28px;
  399. }
  400. .RESSubscriptionButton {
  401.     background-color: transparent!important;
  402. }
  403. /*end r/naut buttons*/
  404. /*TABS*/
  405.  
  406. .link,
  407. .infobar,
  408. .content button,
  409. .info-notice,
  410. .stylesheet-customize-container .pretty-form,
  411. #images,
  412. .search-page .raisedbox,
  413. .search-page .searchfacets,
  414. .linefield,
  415. .search-page .searchpane,
  416. .nextprev,
  417. .roundfield {
  418.     border: 0px;
  419.     border-bottom: 3px solid rgba(8, 179, 109, 0.5)!important;
  420.     background-color: rgba(255, 255, 255, 0.73);
  421.     box-shadow: 0 2px 1.5px 0 rgba(0, 0, 0, .12), 0 0 4px 0 rgba(0, 0, 0, .12);
  422. }
  423. button {
  424.     margin: 0;
  425. }
  426. .link {
  427.     margin-right: 320px;
  428.     margin-bottom: 8px;
  429.     padding: 8px 10px 6px 10px;
  430.     border-radius: 2px;
  431. }
  432. .link {
  433.     margin: 8px;
  434.     margin-bottom: 15px;
  435.     padding-left: 15px;
  436.     margin-right: 320px;
  437. }
  438. /*SUBMIT TAB*/
  439.  
  440. .content.submit .info-notice {
  441.     display: none;
  442. }
  443. .roundfield,
  444. .submit-page,
  445. .content.submit,
  446. content.spacer,
  447. {
  448.     padding-right: 10px;
  449.     border: 0px;
  450.     border-bottom: 3px solid #e5e5e5!important;
  451.     background-color: #fff;
  452. }
  453. .roundfield {
  454.     width: 520px
  455. }
  456. h1 {
  457.     margin-top: 25px;
  458.     font-size: 0px;
  459. }
  460. /*SUBMIT HORNI LISTA*/
  461.  
  462. .submit-page .tabmenu.formtab .selected a {
  463.     padding: 5px 60px 0px 60px;
  464.     background-color: #08b36d;
  465.     color: #fff;
  466.     font-size: 18px;
  467. }
  468. .submit-page .tabmenu.formtab a {
  469.     padding: 5px 55px 0px 55px;
  470.     width: 100px;
  471.     background-color: white;
  472.     border: 0px solid;
  473.     color: #08B36D;
  474.     text-align: center;
  475.     font-weight: normal;
  476.     font-size: 14px;
  477. }
  478. .tabmenu.formtab .selected a {
  479.     color: white;
  480.     font-size: 130%;
  481.     background-color: #5f99cf;
  482.     border: none;
  483. }
  484. .submit-page .tabmenu li a {
  485.     margin: 0px;
  486. }
  487. .formtabs-content {
  488.     padding-top: 0px;
  489.     border-top: 5px solid #08b36d;
  490. }
  491. ul.tabmenu.formtab {
  492.     padding-left: 100px;
  493. }
  494. /*END SUMBIT HORNI LISTA*/
  495. /*END SUBMIT TAB*/
  496. /*posts*/
  497.  
  498. a.thumbnail img {
  499.     height: 64px;
  500.     width: 64px;
  501. }
  502. .thumbnail {
  503.     margin: 5px 15px 5px 5px;
  504. }
  505. /*SUBMIT PAGE*/
  506. /*.commentarea>.sitetable>.comment {
  507.  
  508. }*/
  509.  
  510. .commentarea > .usertext {
  511.     background-color: #FAFAFA !important;
  512.     padding: 10px 0 5px 20px !important;
  513.     overflow: visible;
  514.     margin-left: 10px;
  515.     margin-bottom: 10px;
  516. }
  517. .comments-page .link {
  518.     margin-bottom: 0;
  519. }
  520. .commentarea .menuarea,
  521. .commentarea .panestack-title {
  522.     background: #fafafa;
  523. }
  524. .commentarea .panestack-title {
  525.     margin: 0 0 0 10px;
  526.     padding-top: 10px;
  527. }
  528. .commentarea .menuarea {
  529.     margin: 0 0 0 10px;
  530.     padding-left: 29px;
  531. }
  532. .comment {
  533.     margin-left: 10px;
  534. }
  535. .panestack-title .title {
  536.     margin: 38px 29px;
  537. }
  538. .panestack-title {
  539.     border-bottom: none;
  540. }
  541. /*END SUBMIT PAGE*/
  542. /*END TABS*/
  543. /*MISC*/
  544.  
  545. .md textarea,
  546. .md .-text,
  547. .md p,
  548. .md pre>code,
  549. .md th,
  550. .md td,
  551. .md li {
  552.     font-size: 1em;
  553.     line-height: 1.4285714285714286em;
  554. }
  555. body {
  556.     background: url(%%bg%%) center center;
  557. }
  558. body > .content {
  559.     margin: 15px 5px 0;
  560. }
  561. /*Changes the name of your subscribers/users here now*/
  562.  
  563. .titlebox .word {
  564.     display: none
  565. }
  566. .titlebox .number:after {
  567.     content: " managers";
  568. }
  569. .titlebox .users-online span.number:after {
  570.     content: " on pitch right now";
  571. }
  572. /*SIDEBAR*/
  573.  
  574. .side {
  575.     background-color: transparent;
  576. }
  577. a[href="/sidebar"]:after {
  578.     content: url(%%sidebarpic%%)
  579. }
  580. titlebox form.toggle,
  581. .leavemoderator {
  582.     margin: 0;
  583.     padding: 5px 0px;
  584.     font-size: smaller;
  585.     color: #8A8C8A;
  586.     background: transparent;
  587. }
  588. /*END SIDEBAR*/
  589. /*nvm*/
  590.  
  591. .redditname,
  592. .score .number {
  593.     font-family: Roboto !important;
  594.     font-weight: bold !important;
  595. }
  596. /*end nvm*/
  597. /*END MISC*/
  598. /*FONT COLORS*/
  599.  
  600. .thing .title {
  601.     /*title color*/
  602.    
  603.     color: #18b775;
  604. }
  605. .thing .title:visited,
  606. .thing.visited .title {
  607.     /*title color visited*/
  608.    
  609.     color: #0D7145;
  610. }
  611. .tagline a,
  612. .search-result-meta a {
  613.     color: rgb(234, 186, 42);
  614. }
  615. .error {
  616.     color: #f96300;
  617.     font-size: small;
  618.     padding-left: 37px;
  619. }
  620. /*END FONT COLORS*/
  621. /*FONTS*/
  622.  
  623. .link .title {
  624.     margin: 0px 0px 0px 0px;
  625.     font-size: 13pt;
  626.     font-family: Arial, sans-serif;
  627.     overflow: visible;
  628. }
  629. .entry .buttons li a {
  630.     color: #BAB7B7;
  631.     font-weight: normal;
  632.     padding: 0 1px;
  633. }
  634. body {
  635.     font: 13px -apple-system, ".SFNSDisplay-Light", HelveticaNeue, Helvetica, Arial, "Lucida Grande", sans-serif;
  636. }
  637. .arrow.upmod {
  638.     background: url(%%arrowup%%) no-repeat 0 0;
  639. }
  640. .arrow.downmod {
  641.     background: url(%%arrowdownl%%) no-repeat 0 0;
  642. }
  643. .arrow.up {
  644.     background: url(%%arrowupbaw%%) no-repeat 0 0;
  645. }
  646. .arrow.down {
  647.     background: url(%%arrowdownlbw%%) no-repeat 0 0;
  648. }
  649. .sr-bar a {
  650.     color: black;
  651.     font: normal x-small verdana, arial, helvetica, sans-serif;
  652. }
  653. .dropdown.srdrop .selected {
  654.     font-size: 0px;
  655.     margin-left: 0px;
  656.     margin-right: 5px;
  657. }
  658. #sr-more-link {
  659.     font: normal x-small verdana, arial, helvetica, sans-serif;
  660. }
  661. .drop-choices a.choice {
  662.     background-color: #08AB68;
  663.     color: black;
  664. }
  665. .link .score.likes {
  666.     color: #FFCA2A;
  667.     margin-top: 5px;
  668. }
  669. .link .score.dislikes {
  670.     color: #987300;
  671.     margin-top: 5px;
  672. }
  673. .titlebox .redditname {
  674.     display: none;
  675. }
  676. .link .score {
  677.     color: #c6c6c6;
  678.     margin-top: 5px;
  679. }
  680. .tagline .friend,
  681. .search-result-meta .friend {
  682.     color: #fe7267;
  683. }
  684. /*END FONTS*/
  685. /*comment area*/
  686.  
  687. .link .usertext-body .md {
  688.     border-top: 2px solid rgb(126, 215, 176)!important;
  689. }
  690. .link .usertext .md {
  691.     padding: 10px 10px;
  692. }
  693. .linklisting .md {
  694.     margin-top: 10px;
  695.     margin-bottom: 10px;
  696. }
  697. .md {
  698.     /* color: #03351E; */
  699.    
  700.     max-width: 62em;
  701. }
  702. .link .usertext-body .md {
  703.     background-color: transparent;
  704.     border: none;
  705.     border-radius: 0;
  706. }
  707. .link .rank {
  708.     font-size: 0px;
  709. }
  710. .titlebox .fancy-toggle-button .active.add {
  711.     background-color: #FFCA2A;
  712.     color: #FFFFFF;
  713.     text-align: center;
  714.     margin-right: 2px;
  715.     border-top: 3px solid rgba(255, 255, 255, 0.5) !important;
  716.     padding-top: 4px;
  717.     margin-top: -16px;
  718. }
  719. .titlebox .fancy-toggle-button .active {
  720.     display: block;
  721.     border: none;
  722.     height: 28px;
  723.     border-radius: 1px;
  724.     line-height: 19px;
  725.     background-image: none!important;
  726.     padding: 5px 40px;
  727.     text-transform: capitalize;
  728.     font-size: 12px;
  729.     box-shadow: 0 2px 1.5px 0 rgba(0, 0, 0, .12), 0 0 4px 0 rgba(0, 0, 0, .12);
  730.     border-top: 3px solid rgba(0, 0, 0, 0.22) !important;
  731.     padding-top: 4px;
  732.     margin-top: -16px;
  733. }
  734. .fancy-toggle-button .active {
  735.     background: #065C38;
  736.     color: #B8D9C0;
  737.     text-align: center;
  738.     font-size: 10px;
  739.     font-weight: bold;
  740.     line-height: 20px;
  741.     border-radius: 3px;
  742. }
  743. .titlebox .fancy-toggle-button {
  744.     display: block;
  745.     margin-right: 0px;
  746.     padding: 10px 0px;
  747. }
  748. /*modtools edit*/
  749.  
  750. .gadget small {
  751.     color: rgba(255, 255, 255, 0.65);
  752. }
  753. .sidecontentbox a.helplink {
  754.     color: gray;
  755. }
  756. .sidecontentbox .more a {
  757.     color: rgba(255, 255, 255, 0.5);
  758. }
  759. .sidecontentbox .content {
  760.     border: none font-size: larger;
  761.     list-style: none;
  762.     background-color: rgba(0, 0, 0, 0.47);
  763. }
  764. .tabmenu li a {
  765.     background-color: #000;
  766. }
  767. .icon-menu a {
  768.     background: none;
  769.     color: black;
  770. }
  771. .titlebox form.toggle {
  772.     background: none;
  773. }
  774. .stylesheet-customize-container .pretty-form,
  775. #images {
  776.     margin-right: 316px;
  777. }
  778. /*footer*/
  779.  
  780. .footer {
  781.     padding: 5px;
  782.     margin: 17px auto;
  783.     border: none;
  784.     max-width: 750px;
  785.     background-color: rgba(8, 179, 109, 0.3);
  786. }
  787. .rounded {
  788.     border-radius: 1px;
  789. }
  790. .footer .col {
  791.     border: none;
  792. }
  793. .flat-vert.title {
  794.     color: #FFFFFF;
  795.     text-transform: uppercase;
  796. }
  797. /*search*/
  798.  
  799. #search input[type=text] {
  800.     padding: 10px 25px 10px 16px;
  801.     border: 0 solid;
  802.     border-radius: 2px;
  803.     box-shadow: 0 1px 5px rgba(0, 0, 0, 0.24)!important;
  804.     transition: all .25s ease;
  805. }
  806. #search input[type=text] {
  807.     border: none;
  808.     font-size: 13px;
  809.     width: 300px;
  810.     height: 30px;
  811.     box-sizing: border-box;
  812.     -webkit-box-sizing: border-box;
  813.     -moz-box-sizing: border-box;
  814.     padding: 6px;
  815.     padding-right: 25px;
  816.     padding-left: 9px;
  817.     vertical-align: middle;
  818. }
  819. #searchexpando {
  820.     margin: -1px 0 0 0;
  821. }
  822. #search #searchexpando p {
  823.     display: none!important;
  824. }
  825. #search input[type="submit"] {
  826.     border: none;
  827.     border-radius: none;
  828.     box-shadow: none;
  829. }
  830. /*login*/
  831.  
  832. .login-form-side #remember-me * {
  833.     color: white;
  834. }
  835. .login-form-side {
  836.     border: none;
  837.     background-color: #08b36d;
  838.     border-radius: 1px;
  839.     box-shadow: 0 2px 1.5px 0 rgba(0, 0, 0, .12), 0 0 4px 0 rgba(0, 0, 0, .12);
  840. }
  841. .commentarea .panestack-title,
  842. .commentarea .menuarea,
  843. .commentarea>.usertext {
  844.     margin: 0 323px 0 10px;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement