Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.76 KB | None | 0 0
  1. /*--------------- general ---------------*/
  2.  
  3. H1, H2, H3 {
  4. margin:.25em 0;
  5. padding:.25em 0;
  6. }
  7.  
  8. img {
  9. border:none;
  10. }
  11.  
  12. hr {
  13. display:none;
  14. }
  15.  
  16. body {
  17. padding:0;
  18. background:#222;
  19. font-family:Roboto, sans-serif;
  20. line-height:1.5;
  21. font-size:14px;
  22. color:#ddd;
  23. }
  24.  
  25. a, a:link, a:visited {
  26. text-decoration:none;
  27. transition:color .4s, background-color .4s, border-color .4s;
  28. }
  29.  
  30. a { color:#a0d0eb; }
  31. a:hover { color:#fd0000; }
  32.  
  33. q { font-style: italic; }
  34.  
  35. blockquote{
  36. background:#272727;
  37. border:1px solid #444;
  38. margin:1em 0;
  39. padding:1em;
  40. }
  41.  
  42. #secondary::-webkit-scrollbar{
  43. width:5px;
  44. height:5px;
  45. }
  46.  
  47. #secondary::-webkit-scrollbar-track{
  48. background:#2c2c2c;
  49. }
  50.  
  51. #secondary::-webkit-scrollbar-thumb{
  52. background:#444;
  53. }
  54.  
  55. #secondary::-webkit-scrollbar-corner{
  56. background:#444;
  57. }
  58.  
  59. #canvas{
  60. margin-top:20px;
  61. }
  62.  
  63. @media (min-width:800px){
  64. #canvas{
  65. margin-top:50px;
  66. }
  67. }
  68.  
  69. @media (min-width:1024px){
  70. #canvas{
  71. margin:40px 0 40px 381px;
  72. padding:0 40px;
  73. }
  74. }
  75.  
  76. #content-footer {
  77. height:0;
  78. font-size:0;
  79. clear: both;
  80. }
  81.  
  82. #header, #primary{
  83. max-width:700px;
  84. margin:0 auto;
  85. }
  86.  
  87. @media (min-width:1024px){
  88. #header, #primary{
  89. margin:0;
  90. }
  91. }
  92.  
  93. @media (min-width:800px){
  94. .page-recent #header:after{
  95. content:"";
  96. display:block;
  97. width:100%;
  98. height:300px;
  99. margin-top:10px;
  100. background-image:url("https://i.imgur.com/mv8HOvs.png");
  101. background-repeat:no-repeat;
  102. background-color:#2c2c2c;
  103. background-position:center center;
  104. }
  105. }
  106.  
  107. #header .inner{
  108. text-align:center;
  109. background:#2c2c2c;
  110. border:1px solid #444;
  111. position:relative;
  112. padding:20px 5px;
  113. }
  114.  
  115. h1#title {
  116. font-size:2em;
  117. font-family:Roboto Condensed, sans-serif;
  118. margin:0;
  119. padding:0;
  120. line-height:1em;
  121. text-transform:uppercase;
  122. font-weight:normal;
  123. }
  124.  
  125. h1#title a{
  126. color:#fd0000;
  127. }
  128.  
  129. h2#subtitle{
  130. font-size:1em;
  131. background:#fd0000;
  132. color:#2c2c2c;
  133. margin:0;
  134. padding:0;
  135. line-height:1em;
  136. text-transform:uppercase;
  137. font-weight:normal;
  138. font-family:Roboto Condensed, sans-serif;
  139. }
  140.  
  141. @media (min-width:800px){
  142. h1#title {
  143. font-size:4em;
  144. }
  145. }
  146.  
  147. h2#pagetitle {
  148. display:none;
  149. }
  150.  
  151. /*--------------- entries ---------------*/
  152.  
  153. .entry {
  154. margin:20px 0 0;
  155. border:1px solid #444;
  156. background:#2c2c2c;
  157. color:#ddd;
  158. }
  159.  
  160. @media (min-width:800px){
  161. .entry {
  162. margin:30px 0 0;
  163. }
  164. }
  165.  
  166. .entry .header, .comment .header{
  167. float:left;
  168. width:100%;
  169. border-bottom:1px solid #444;
  170. }
  171.  
  172. .entry .entry-title {
  173. font-size:1.5em;
  174. font-family:Roboto Condensed, sans-serif;
  175. text-transform:uppercase;
  176. font-weight:normal;
  177. text-align:center;
  178. border-bottom:1px solid #444;
  179. margin:0;
  180. padding:0.5em;
  181. line-height:1;
  182. }
  183.  
  184. .entry .entry-title, .entry .entry-title a {
  185. color:#fd0000;
  186. }
  187.  
  188. .no-subject .entry .entry-title {
  189. background:none;
  190. border:none;
  191. padding:0;
  192. }
  193.  
  194. .sticky-entry-icon, .admin-post-icon{
  195. display:none;
  196. }
  197.  
  198. .entry .restrictions img, .entry .access-filter img{
  199. display:none;
  200. }
  201.  
  202. .entry .date, .entry .time, .restrictions, .entry .access-filter{
  203. padding:.5em;
  204. border-right:1px solid #444;
  205. display:block;
  206. float:left;
  207. font-family:Roboto Condensed, sans-serif;
  208. text-transform:uppercase;
  209. line-height:1;
  210. }
  211.  
  212. .security-protected .access-filter:before{
  213. content:"LOCKED";
  214. }
  215.  
  216. .security-private .access-filter:before{
  217. content:"PRIVATE";
  218. }
  219.  
  220. .restrictions-NSFW .restrictions:before{
  221. content:"NSFW";
  222. }
  223.  
  224. .restrictions-18 .restrictions:before{
  225. content:"18+";
  226. }
  227.  
  228. .has-userpic .userpic{
  229. float:right;
  230. margin-top:-1px;
  231. margin-left:1em;
  232. margin-bottom:.5em;
  233. }
  234.  
  235. @media (min-width:1280px){
  236. .has-userpic .userpic{
  237. width:110px;
  238. margin-right:-115px;
  239. margin-left:0;
  240. margin-bottom:0;
  241. }
  242. }
  243.  
  244. .userpic img{
  245. border:1px solid #444;
  246. background:#2c2c2c;
  247. padding:5px;
  248. display:block;
  249. max-width:50px;
  250. max-height:50px;
  251. width:auto;
  252. height:auto;
  253. }
  254.  
  255. @media(min-width:640px){
  256. .userpic img{
  257. max-width:100px;
  258. max-height:100px;
  259. }
  260. }
  261.  
  262. .entry .poster, .full .poster{
  263. clear:left;
  264. display:block;
  265. border-bottom:1px solid #444;
  266. text-align:right;
  267. line-height:1;
  268. }
  269.  
  270. .entry .poster{
  271. font-size:0;
  272. }
  273.  
  274. .entry .poster .ljuser, .full .poster .ljuser, .poster .anonymous{
  275. display:inline-block;
  276. font-family:Roboto Condensed, sans-serif;
  277. text-transform:uppercase;
  278. padding:.5em;
  279. border-left:1px solid #444;
  280. }
  281.  
  282. .entry .poster .ljuser{
  283. font-size:14px;
  284. }
  285.  
  286. .has-userpic .entry .poster .ljuser:last-child, .full.has-userpic .poster .ljuser{
  287. margin-right:-1em;
  288. }
  289.  
  290. @media(min-width:1280px){
  291. .has-userpic .entry .poster .ljuser:last-child, .full.has-userpic .poster .ljuser{
  292. margin-right:0;
  293. }
  294. }
  295.  
  296. .poster .ljuser img{
  297. display:none;
  298. }
  299.  
  300. .poster.empty{
  301. border:none;
  302. }
  303.  
  304. .poster .ljuser b{
  305. font-weight:normal;
  306. }
  307.  
  308. .entry-content li, .comment-content li {
  309. list-style-position:inside;
  310. }
  311.  
  312. .entry-content img, .comment-content img {
  313. max-width:100%;
  314. height:auto;
  315. }
  316.  
  317. .entry-content{
  318. margin:1.5em;
  319. clear:left;
  320. }
  321.  
  322. @media (min-width:800px){
  323. .entry-content{
  324. text-align:justify;
  325. }
  326. }
  327.  
  328. .entry-content ol, .comment-content ol{
  329. padding-left:1em;
  330. }
  331.  
  332. .entry-content ul, .comment-content ul{
  333. padding-left:1em;
  334. }
  335.  
  336. .cuttag_container img{
  337. vertical-align:bottom;
  338. }
  339.  
  340. .metadata{
  341. border-bottom:1px solid #444;
  342. margin-bottom:-1px;
  343. clear:both;
  344. }
  345.  
  346. .metadata ul {
  347. list-style:none;
  348. margin:0;
  349. padding:0;
  350. }
  351.  
  352. .tag, .metadata li{
  353. border-top:1px solid #444;
  354. display:flex;
  355. line-height:1;
  356. }
  357.  
  358. .tag-text, .metadata-label{
  359. font-family:Roboto Condensed, sans-serif;
  360. text-transform:uppercase;
  361. padding:.5em;
  362. border-right:1px solid #444;
  363. }
  364.  
  365. .tag ul, .metadata-item{
  366. margin:0;
  367. padding:.5em;
  368. }
  369.  
  370. .tag{
  371. border-bottom:1px solid #444;
  372. }
  373.  
  374. .tag ul li {
  375. display:inline;
  376. }
  377.  
  378. ul.entry-management-links, ul.entry-interaction-links{
  379. margin:0;
  380. padding:0;
  381. display:flex;
  382. list-style:none;
  383. border-top:1px solid #444;
  384. flex-wrap:wrap;
  385. text-transform:uppercase;
  386. font-family:Roboto Condensed, sans-serif;
  387. line-height:1;
  388. }
  389.  
  390. ul.entry-management-links{
  391. margin-top:10px;
  392. }
  393.  
  394. ul.entry-management-links li {
  395. padding:.5em;
  396. border-right:1px solid #444;
  397. }
  398.  
  399. ul.entry-interaction-links {
  400. justify-content:flex-end;
  401. }
  402.  
  403. ul.entry-interaction-links li {
  404. padding:.5em;
  405. border-left:1px solid #444;
  406. }
  407.  
  408. .footer{
  409. clear:both;
  410. }
  411.  
  412. /*--------------- comments ---------------*/
  413.  
  414. .comment-pages{
  415. text-transform:uppercase;
  416. font-family:Roboto Condensed, sans-serif;
  417. background:#2c2c2c;
  418. border:1px solid #444;
  419. padding:.5em;
  420. text-align:center;
  421. }
  422.  
  423. .comment-pages:first-of-type{
  424. margin-top:20px;
  425. margin-bottom:5px;
  426. }
  427.  
  428. @media (min-width:800px){
  429. .comment-pages:first-of-type{
  430. margin-top:30px;
  431. }
  432. }
  433.  
  434. .full .comment{
  435. margin-top:10px;
  436. border:1px solid #444;
  437. background:#2c2c2c;
  438. color:#ddd;
  439. }
  440.  
  441. .comment-thread{
  442. margin-left:-20px;
  443. }
  444.  
  445. .comment-depth-1{
  446. margin-left:0;
  447. }
  448.  
  449. .full .comment-title {
  450. font-size:1em;
  451. font-family:Roboto Condensed, sans-serif;
  452. text-transform:uppercase;
  453. font-weight:normal;
  454. text-align:center;
  455. border-bottom:1px solid #444;
  456. margin:0;
  457. padding:.5em;
  458. line-height:1;
  459. }
  460.  
  461. .full .header .datetime{
  462. display:block;
  463. float:left;
  464. padding:.5em;
  465. border-right:1px solid #444;
  466. font-family:Roboto Condensed, sans-serif;
  467. text-transform:uppercase;
  468. line-height:1;
  469. }
  470.  
  471. .comment-posted {font-weight:bold;}
  472.  
  473. .comment-wrapper {
  474. min-width:15em;
  475. }
  476.  
  477. .no-subject .comment .comment-title {
  478. background:none;
  479. border:none;
  480. padding:0;
  481. }
  482.  
  483. .comment-date-text, .comment-from-text{
  484. display:none;
  485. }
  486.  
  487. .comment .poster-ip {
  488. font-size:1em;
  489. display:block;
  490. font-family:Roboto Condensed, sans-serif;
  491. text-transform:uppercase;
  492. border-bottom:1px solid #444;
  493. line-height:1;
  494. padding:.5em;
  495. }
  496.  
  497. .comment-content{
  498. padding:1.5em;
  499. }
  500.  
  501. .comment .multiform-checkbox {
  502. float:left;
  503. border-top:1px solid #444;
  504. padding:.25em .5em 0;
  505. display:block;
  506. font-family:Roboto Condensed, sans-serif;
  507. text-transform:uppercase;
  508. }
  509.  
  510. .multiform-checkbox input{
  511. vertical-align:top;
  512. }
  513.  
  514. ul.comment-management-links, ul.comment-interaction-links{
  515. margin:0;
  516. padding:0;
  517. display:flex;
  518. list-style:none;
  519. border-top:1px solid #444;
  520. flex-wrap:wrap;
  521. text-transform:uppercase;
  522. font-family:Roboto Condensed, sans-serif;
  523. line-height:1;
  524. }
  525.  
  526. ul.comment-management-links li{
  527. padding:.5em;
  528. border-right:1px solid #444;
  529. }
  530.  
  531. ul.comment-management-links li:first-child{
  532. border-left:1px solid #444;
  533. margin-left:-1px;
  534. }
  535.  
  536. ul.comment-interaction-links {
  537. justify-content:flex-end;
  538. }
  539.  
  540. ul.comment-interaction-links li{
  541. padding:.5em;
  542. border-left:1px solid #444;
  543. }
  544.  
  545. #comments ul.entry-management-links, #comments ul.entry-interaction-links, .comment-pages.bottompages{
  546. display:none;
  547. }
  548.  
  549. .bottomcomment{
  550. padding:0;
  551. text-align:center;
  552. }
  553.  
  554. textarea#commenttext{
  555. width:100%;
  556. }
  557.  
  558. .partial .comment{
  559. background:#2c2c2c;
  560. margin-top:10px;
  561. padding:.5em 1em;
  562. border:1px solid #444;
  563. }
  564.  
  565. .partial .comment-title{
  566. margin:0;
  567. }
  568.  
  569. #qrform{
  570. padding:1em;
  571. border-top:1px solid #444;
  572. }
  573.  
  574. #qrdiv table{
  575. margin:0;
  576. }
  577.  
  578. #postform{
  579. padding:1em;
  580. background:#2c2c2c;
  581. border:1px solid #444;
  582. margin-top:5px;
  583. }
  584.  
  585. /*------------ archive, tags, icons containers ------------*/
  586.  
  587. .month-wrapper, .page-month .month, .tags-container, .icons-container{
  588. margin-top:20px;
  589. border:1px solid #444;
  590. background:#2c2c2c;
  591. color:#ddd;
  592. }
  593.  
  594. @media (min-width:800px){
  595. .month-wrapper, .page-month .month, .tags-container, .icons-container{
  596. margin-top:30px;
  597. }
  598. }
  599.  
  600. .month-wrapper .header, .tags-container .header, .icons-container .header{
  601. border-bottom:1px solid #444;
  602. }
  603.  
  604. .month-wrapper h3, .tags-container h2, .icons-container h2{
  605. font-size:1.5em;
  606. font-family:Roboto Condensed, sans-serif;
  607. color:#fd0000;
  608. text-transform:uppercase;
  609. font-weight:normal;
  610. text-align:center;
  611. margin:0;
  612. padding:.5em;
  613. line-height:1;
  614. }
  615.  
  616. .tags-container .contents{
  617. padding:1.5em;
  618. }
  619.  
  620. #archive-year .month .footer .inner, #primary .manage-link{
  621. font-family:Roboto Condensed, sans-serif;
  622. text-transform:uppercase;
  623. line-height:1;
  624. border-top:1px solid #444;
  625. }
  626.  
  627. #archive-year .month .footer .inner a, #primary .manage-link a{
  628. display:inline-block;
  629. padding:.5em;
  630. border-right:1px solid #444;
  631. }
  632.  
  633. /*------------ archive ------------*/
  634.  
  635. .day-date{
  636. display:none;
  637. }
  638.  
  639. .month caption {
  640. display:none;
  641. }
  642.  
  643. table.month {
  644. margin:0 auto;
  645. border-collapse:collapse;
  646. width:100%;
  647. border:none;
  648. text-align:center;
  649. }
  650.  
  651. table.month td, table.month th {
  652. border-right:1px solid #444;
  653. max-width:1em;
  654. height:3.25em;
  655. }
  656.  
  657. table.month th {
  658. font-family:Roboto Condensed, sans-serif;
  659. text-transform:uppercase;
  660. font-weight:normal;
  661. }
  662.  
  663. table.month td:last-child, table.month th:last-child{
  664. border-right:none;
  665. }
  666.  
  667. table.month tr, table.month th{
  668. border-bottom:1px solid #444;
  669. }
  670.  
  671. table.month tr:last-child{
  672. border-bottom:none;
  673. }
  674.  
  675. table.month td p {
  676. margin:0;
  677. }
  678.  
  679. .month dl{
  680. margin:0;
  681. }
  682.  
  683. .month dl dt {
  684. font-family:Roboto Condensed, sans-serif;
  685. text-transform:uppercase;
  686. text-align:center;
  687. border-bottom:1px solid #444;
  688. margin-bottom:.25em;
  689. padding:.25em;
  690. }
  691.  
  692. .month dl br{
  693. display:none;
  694. }
  695.  
  696. .month dl h3 {
  697. display:inline;
  698. font-size:1em;
  699. }
  700.  
  701. .month dd{
  702. margin:0;
  703. }
  704.  
  705. .month dd > span {
  706. padding:.25em;
  707. }
  708.  
  709. .month .tag{
  710. margin-top:.25em;
  711. }
  712.  
  713. .month dd:last-child .tag{
  714. border-bottom:0;
  715. }
  716.  
  717. #archive-year .navigation ul, #archive-month .navigation ul form{
  718. display:flex;
  719. flex-wrap:wrap;
  720. }
  721.  
  722. #archive-year .navigation li, #archive-month .navigation li{
  723. border-right:1px solid #444;
  724. }
  725.  
  726. /*------------ tags ------------*/
  727.  
  728. ul.ljtaglist{
  729. margin:0 0 0 1em;
  730. padding:0;
  731. list-style:inside;
  732. }
  733.  
  734. ul.ljtaglist:first-child, .tags_cloud ul{
  735. padding:0;
  736. margin:0;
  737. }
  738.  
  739. /*------------ icons page ------------*/
  740.  
  741. .sorting-options ul {
  742. margin-left: 0;
  743. }
  744.  
  745. .sorting-options ul li {
  746. display: inline;
  747. }
  748.  
  749. .icon-keywords ul {
  750. display: inline;
  751. margin-left: 0;
  752. padding-left: 0;
  753. }
  754.  
  755. .icon-keywords ul li {
  756. display: inline;
  757. }
  758.  
  759. /*------------ icons page ------------*/
  760.  
  761. .sorting-options ul{
  762. margin:0;
  763. padding:.5em;
  764. text-transform:uppercase;
  765. font-family:Roboto Condensed, sans-serif;
  766. line-height:1;
  767. border-bottom:1px solid #444;
  768. }
  769.  
  770. .page-icons .toppages{
  771. display:none;
  772. }
  773.  
  774. .page-icons .bottompages{
  775. padding:.25em;
  776. text-align:center;
  777. text-transform:uppercase;
  778. font-family:Roboto Condensed, sans-serif;
  779. }
  780.  
  781. .icons-container .icon{
  782. border-bottom:1px solid #444;
  783. display:flex;
  784. flex-wrap:wrap;
  785. }
  786.  
  787. .icons-container .icon:last-child{
  788. border-bottom:0;
  789. }
  790.  
  791. .icon-image{
  792. order:2;
  793. min-width:auto;
  794. margin:0;
  795. border-left:1px solid #444;
  796. }
  797.  
  798. .icon-image img{
  799. display:block;
  800. }
  801.  
  802. .icon-info{
  803. padding:1.5em;
  804. flex:1;
  805. }
  806.  
  807. .default.label, .keywords-label, .comment-text, .description-text{
  808. text-transform:uppercase;
  809. font-family:Roboto Condensed, sans-serif;
  810. text-decoration:none;
  811. }
  812.  
  813. .icon-pages p{
  814. margin:0;
  815. text-transform:uppercase;
  816. font-family:Roboto Condensed, sans-serif;
  817. }
  818.  
  819. /*------------ sidebar ------------*/
  820.  
  821. #secondary{
  822. background:#2c2c2c;
  823. color:#ddd;
  824. margin-top:20px;
  825. border-top:1px solid #444;
  826. }
  827.  
  828. @media (min-width:800px){
  829. #secondary{
  830. margin-top:30px;
  831. }
  832. }
  833.  
  834. .module-section-one{
  835. max-width:700px;
  836. padding:20px;
  837. margin:0 auto;
  838. }
  839.  
  840. @media (min-width:1024px){
  841. #secondary{
  842. position:fixed;
  843. top:0;
  844. left:0;
  845. width:380px;
  846. height:100%;
  847. overflow:auto;
  848. display:flex;
  849. border-right:1px solid #444;
  850. border-top:none;
  851. margin:0;
  852. }
  853. .module-section-one{
  854. margin:40px;
  855. padding:0;
  856. }
  857. }
  858.  
  859. #secondary > .inner:first-child{
  860. margin:auto;
  861. }
  862.  
  863. @media (min-width:1024px){
  864. .module-section-one:before{
  865. content:"";
  866. display:block;
  867. width:100%;
  868. height:200px;
  869. margin-bottom:5px;
  870. background-image:url("https://i.imgur.com/CEW5tfU.png");
  871. background-repeat:no-repeat;
  872. background-color:#272727;
  873. background-position:center center;
  874. }
  875. }
  876.  
  877. .module-content ul {
  878. list-style: none;
  879. padding:0;
  880. margin:0;
  881. display:flex;
  882. flex-wrap:wrap;
  883. margin:0 -2px;
  884. }
  885.  
  886. .module-content li {
  887. flex-grow:1;
  888. text-align:center;
  889. text-transform:uppercase;
  890. font-family:Roboto Condensed, sans-serif;
  891. line-height:1;
  892. }
  893.  
  894. @media (min-width:1024px){
  895. .module-content li {
  896. min-width:50%;
  897. }
  898. }
  899.  
  900. .module-content li a{
  901. display:block;
  902. margin:2px;
  903. background:#272727;
  904. border:1px solid #444;
  905. padding:.5em;
  906. }
  907.  
  908. .module-content li a:hover{
  909. border:1px solid #fd0000;
  910. background:#fd0000;
  911. color:#222;
  912. }
  913.  
  914. .module-customtext{
  915. padding:5px 0;
  916. }
  917.  
  918. .module h2, .module .manage-link, .module-userprofile, .module-calendar, .module-tags_list, .module-tags_cloud, .module-tags_multilevel, .module-cuttagcontrols, .module-pagesummary, .module-active, .module-credit, .module-syndicate, .module-subscriptionfilters, .module-search, .module-time, .module-powered{
  919. display:none;
  920. }
  921.  
  922. /*------------ navigation ------------*/
  923.  
  924. .navigation ul{
  925. margin:10px 0 0;
  926. padding:0;
  927. text-transform:uppercase;
  928. overflow:hidden;
  929. background:#2c2c2c;
  930. border:1px solid #444;
  931. }
  932.  
  933. .navigation li{
  934. padding:.5em;
  935. text-align:center;
  936. line-height:1;
  937. font-family:Roboto Condensed, sans-serif;
  938. list-style:none;
  939. }
  940.  
  941. li.page-back{
  942. float:left;
  943. border-right:1px solid #444;
  944. }
  945.  
  946. li.page-forward{
  947. border-left:1px solid #444;
  948. float:right;
  949. }
  950.  
  951. .topnav, .navigation .page-separator, .navigation.empty, .noentries{
  952. display:none;
  953. }
  954.  
  955. /*------------ footer ------------*/
  956.  
  957. #footer {
  958. border-top:1px solid #444;
  959. background:#2c2c2c;
  960. }
  961.  
  962. .page-top{
  963. font-family:Roboto Condensed, sans-serif;
  964. text-align:center;
  965. text-transform:uppercase;
  966. line-height:1;
  967. padding:.5em;
  968. }
  969.  
  970. @media (min-width:1024px){
  971. #footer {
  972. display:none;
  973. }
  974. }
  975.  
  976. #footer a { color:#fd0000; }
  977.  
  978. /*------------ contextual pop-up ------------*/
  979.  
  980. div.ContextualPopup{
  981. background:#2c2c2c;
  982. border:1px solid #444;
  983. padding:1.5em;
  984. font-family:inherit;
  985. box-shadow:none;
  986. border-radius:0;
  987. }
  988.  
  989. .ContextualPopup a { color: #a0d0eb; }
  990. .ContextualPopup a:hover { color: #fd0000; }
  991.  
  992. div.ContextualPopup .Relation{
  993. font-size:1em;
  994. font-family:Roboto Condensed, sans-serif;
  995. font-weight:normal;
  996. text-transform:uppercase;
  997. color:#ddd;
  998. margin:0;
  999. }
  1000.  
  1001. div.ContextualPopup .Userpic{
  1002. border:none;
  1003. }
  1004.  
  1005. div.ContextualPopup ul{
  1006. padding:.5em 0 0!important;
  1007. }
  1008.  
  1009. /*------------ control strip ------------*/
  1010.  
  1011. #lj_controlstrip{
  1012. background:#2c2c2c;
  1013. border-bottom:1px solid #444;
  1014. width:auto;
  1015. }
  1016.  
  1017. @media (min-width:1024px){
  1018. #lj_controlstrip{
  1019. padding-left:381px;
  1020. }
  1021. }
  1022.  
  1023. #lj_controlstrip td{
  1024. border:none;
  1025. color:#ddd;
  1026. }
  1027.  
  1028. #lj_controlstrip a{
  1029. color:#fd0000;
  1030. }
  1031.  
  1032. #lj_controlstrip .ljuser a{
  1033. font-size:13px;
  1034. }
  1035.  
  1036. #lj_controlstrip_user, #lj_controlstrip_login, #lj_controlstrip_actionlinks {
  1037. border-right:none;
  1038. }
  1039.  
  1040. #lj_controlstrip_actionlinks {
  1041. text-align:center;
  1042. }
  1043.  
  1044. #lj_controlstrip_statustext {
  1045. color:#ddd;
  1046. font-weight:normal;
  1047. }
  1048.  
  1049. #lj_controlstrip_search {
  1050. text-align:right;
  1051. }
  1052.  
  1053. #lj_controlstrip input{
  1054. border:0;
  1055. }
  1056.  
  1057. #lj_controlstrip input[type="submit"]{
  1058. font-family:Roboto Condensed, sans-serif;
  1059. text-transform:uppercase;
  1060. padding:5px;
  1061. color:#ddd;
  1062. background:transparent;
  1063. font-size:14px;
  1064. }
  1065.  
  1066. #lj_controlstrip .ljuser img{
  1067. display:none;
  1068. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement