Advertisement
TeslaCoilGirl

astrobooru css

Oct 17th, 2015
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 12.25 KB | None | 0 0
  1. * {
  2.   font-family: verdana,sans-serif;
  3.   margin: 0;
  4.   padding: 0;
  5. }
  6.  
  7.  
  8.  
  9. body {
  10.   font: 80% verdana, sans-serif;
  11.   background-color: #006;
  12.   padding: 1em 2em;
  13. }
  14.  
  15. h1 {
  16.   font-size: 2em;
  17. }
  18.  
  19. h2 {
  20.   font-size: 1.8em;
  21. }
  22.  
  23. h3 {
  24.   font-size: 1.6em;
  25. }
  26.  
  27. h4 {
  28.   font-size: 1.4em;
  29. }
  30.  
  31. h5 {
  32.   font-size: 1.2em;
  33. }
  34.  
  35. h6 {
  36.   font-size: 1em;
  37. }
  38.  
  39. img {
  40.   border: none;
  41.   vertical-align: middle;
  42. }
  43.  
  44. input {
  45.   padding: 0 0.5em;
  46. }
  47.  
  48. a:link {
  49.   color: #FFF;
  50.   text-decoration: none;
  51. }
  52.  
  53. a:visited {
  54.   color: #DDD;
  55.   text-decoration: none;
  56. }
  57.  
  58. a:hover {
  59.   color: #EEE;
  60.   text-decoration: none;
  61. }
  62.  
  63. a:active {
  64.   color: #FFF;
  65.   text-decoration: none;
  66. }
  67.  
  68. a.spoilers {
  69.   color: white;
  70.   background: white;
  71.   cursor: text;
  72. }
  73.  
  74. a.spoilers:hover {
  75.   color: white;
  76.   background: #FFF;
  77. }
  78.  
  79. a.help {
  80.   background: #E6E6E6;
  81. }
  82.  
  83. .link {
  84.   color: #FFF;
  85.   background: none;
  86.   border: none;
  87.   font-size: 1em;
  88.   cursor: pointer;
  89. }
  90.  
  91. .link:hover {
  92.   color: #EEE;
  93. }
  94.  
  95. label {
  96.   font-weight: bold;
  97.   padding-right: 2em;
  98. }
  99.  
  100. strong.divider {
  101.   font-weight: bold;
  102.   color: gray;
  103. }
  104.  
  105. span.author {
  106.   color: #CCC;
  107. }
  108.  
  109. span.date {
  110.   color: #CCC;
  111. }
  112.  
  113. span.locked-topic {
  114.   color: #999;
  115. }
  116.  
  117. th {
  118.   font-weight: bold;
  119.   text-align: left;
  120.   background-color: #006ffa;
  121.   color: white;
  122.   padding: 0.2em 0.5em;
  123.   white-space: nowrap;
  124. }
  125.  
  126. th a, th a:link, th a:visited {
  127.   color: rgb(250, 250, 255);
  128. }
  129.  
  130. tr.padded th {
  131.   padding: 0 1em;
  132. }
  133.  
  134. table.highlightable > tbody > tr:hover {
  135.   background: #FFD;
  136. }
  137.  
  138. tr.even {
  139.   background: #ffffff;
  140. }
  141.  
  142. tr.odd {
  143.   background: #f0f0f0;
  144. }
  145.  
  146. tr.pending-tag {
  147.   background: #dcf6dc;
  148. }
  149.  
  150. td {
  151.   padding: 1px 4px; vertical-align: top;
  152. }
  153.  
  154. fieldset {
  155.   border: 1px dashed gray;
  156.   margin-bottom: 1em;
  157.   padding: 0.5em 1em;
  158.   width: 50%;
  159. }
  160.  
  161. legend {
  162.   letter-spacing: 0.5em;
  163. }
  164.  
  165. code {
  166.   font-family: monospace;
  167.   font-size: 1.2em;
  168. }
  169.  
  170. table {
  171.   margin-bottom: 2em;
  172. }
  173.  
  174. textarea {
  175.   font-family: monospace;
  176.   font-size: 1.2em;
  177.   width: 400px;
  178.   height: 100px;
  179. }
  180.  
  181. ol {
  182.   margin-left: 1em;
  183. }
  184.  
  185. ul {
  186.   margin-bottom: 1em;
  187. }
  188.  
  189. li {
  190.   margin-left: 1em;
  191. }
  192.  
  193. p {
  194.   margin-bottom: 1em;
  195. }
  196.  
  197. h5 a:link {
  198.   color: white;
  199. }
  200.  
  201. h5 a:visited {
  202.   color: white;
  203. }
  204.  
  205. h5 a:hover {
  206.   color: #EEE;
  207. }
  208.  
  209. .space {
  210.   margin-bottom: 1em;
  211. }
  212.  
  213. div#header {
  214.   margin-bottom: 1em;
  215. }
  216.  
  217. div#content {
  218.  
  219. }
  220.  
  221. div#footer {
  222.   margin-top: 1em;
  223.   text-align: center;
  224.   font-size: 120%;
  225.   color: #CCC;
  226.   clear: both;
  227. }
  228.  
  229. div.sidebar {
  230.   width: 20%;
  231.   margin-right: 1em;
  232.   float: left;
  233.   overflow: hidden;
  234. }
  235.  
  236. div.sidebar li {
  237.   list-style-type: none;
  238.   margin: 0;
  239. }
  240.  
  241. div.content {
  242.   float: left;
  243.   width: 78%;
  244. }
  245.  
  246. div.option {
  247.   clear: both;
  248.   margin-bottom: 0.5em;
  249. }
  250.  
  251. div.option p {
  252.   width: 15em;
  253.   font-size: 90%;
  254. }
  255.  
  256. label.block {
  257.   float: left;
  258.   width: 15em;
  259.   padding-right: 1em;
  260. }
  261.  
  262. span.informational {
  263.   cursor: help;
  264. }
  265.  
  266. img.preview {
  267.   margin: auto;
  268. }
  269.  
  270. span.thumb {
  271.   height: 180px;
  272.   width: 180px;
  273.   display: inline-block;
  274.   float: left;
  275.   text-align: center;
  276.   vertical-align: middle;
  277. }
  278.  
  279. .hidden-comment {
  280.   background-color: #CCC;
  281. }
  282.  
  283. .ignored-comment {
  284.   background-color: #FEE;
  285. }
  286.  
  287. .good-comment {
  288.   background-color: #EFE;
  289. }
  290.  
  291. .ignored-post {
  292.   background-color: #FEE;
  293. }
  294.  
  295.  
  296. span.comment-info {
  297.   font-size: 120%;
  298. }
  299.  
  300. span.comment-info a {
  301.   color: #AAA;
  302. }
  303.  
  304. span.comment-info a:hover {
  305.   color: #EEE;
  306. }
  307.  
  308. a.comment-link:link, a.comment-link:visited {
  309.   color: white;
  310.   font-weight: bold;
  311. }
  312.  
  313. a.resp-link {
  314.   font-weight: bold;
  315. }
  316.  
  317. span.post-count {
  318.   color: #AAA;
  319. }
  320.  
  321. ul.flat-list {
  322.   display: inline;
  323. }
  324.  
  325. ul.flat-list * {
  326.   display: inline;
  327. }
  328.  
  329. ul.flat-list li {
  330.   list-style-type: none;
  331.   font-weight: bold;
  332.   margin: 0 1em 0 0;
  333. }
  334.  
  335. ul.flat-list li a {
  336.   font-weight: normal;
  337. }
  338.  
  339. ul.flat-list li a.forum-update {
  340.   font-weight: bold;
  341. }
  342.  
  343. ul.link-page {
  344.     font-size: 1.2em;
  345.     font-weight: bold;
  346. }
  347.  
  348. ul.link-page > li {
  349.     margin: 0;
  350.     padding: 0;
  351.     list-style-type: none;
  352. }
  353.  
  354. li#notice {
  355.   color: red;
  356.   font-weight: bold;
  357. }
  358.  
  359. form.button-to input {
  360.   border: none;
  361.   color: #FFF;
  362.   background: none;
  363.   cursor: pointer;
  364.   font-size: 1em;
  365.   font-weight: normal;
  366. }
  367.  
  368. form.button-to input:hover {
  369.   color: #EEE;
  370. }
  371.  
  372. div#paginator {
  373.   display: block;
  374.   padding: 2em 0 1em 0;
  375.   font-size: 1em;
  376.   text-align: center;
  377.   font-weight: bold;
  378.   clear: both;
  379. }
  380.  
  381. div#paginator span {
  382.   margin: 0 3px;
  383.   padding: 2px 6px;
  384. }
  385.  
  386. div#paginator a {
  387.   margin: 0 3px;
  388.   padding: 2px 6px;
  389.   font-weight: normal;
  390.   border: 1px solid #EAEAEA;
  391. }
  392.  
  393. div#paginator a.current {
  394.   border: 1px solid #AAA;
  395. }
  396.  
  397. div#paginator a:hover {
  398.   background: rgb(60, 60, 220);
  399.   color: white;
  400. }
  401.  
  402. div#paginator a.arrow {
  403.   border: none;
  404. }
  405.  
  406. div#paginator a.arrow:hover {
  407.   background: white;
  408.   color: #EEE;
  409. }
  410.  
  411. div#static-index {
  412.   text-align: center;
  413. }
  414.  
  415. div#static-index div#links a {
  416.   margin: 0 0.5em;
  417. }
  418.  
  419. div#static-more li {
  420.   list-style-type: none;
  421.   margin: 0;
  422. }
  423.  
  424. div#static-more div {
  425.   float: left;
  426.   width: 25%;
  427. }
  428.  
  429. div#static-more ul {
  430.   margin-top: 2em;
  431. }
  432.  
  433. div#user-stats li {
  434.   list-style-type: none;
  435.   margin: 0;
  436. }
  437.  
  438. div#user-stats div {
  439.   float: left;
  440.   width: 30%;
  441. }
  442.  
  443. div#user-stats ul {
  444.   margin-top: 2em;
  445. }
  446.  
  447. div.comment-quote {
  448.   padding: 0 1em;
  449.   margin: 0;
  450.   background: #fafafa;
  451. }
  452. div.quote {
  453.   margin-top: 10px;
  454.   padding: 12px;
  455.   text-align: justify;
  456.   font-style: italic;
  457.   background: #f6f6f6 url('/counter/quote.gif') no-repeat top right;
  458.   font-size: 12px;
  459.   font-family: sans-serif, arial, tahoma;
  460.   border: 1px solid #bababa;
  461.  
  462. }
  463.  
  464.  
  465. div.comment-quote div.comment-quote {
  466.   background: #DDD;
  467. }
  468.  
  469. div#comment-list2 li {
  470.   list-style-type: none;
  471.   margin: 0;
  472. }
  473.  
  474. div#comment-list2 ul.post-info {
  475.   font-size: 1.2em;
  476.   color: #AAA;
  477. }
  478.  
  479. div#comment-list2 h4 a {
  480.   color: #999;
  481. }
  482.  
  483. div#comment-list2 h5.post-header {
  484.   margin-bottom: 1em;
  485.   font-weight: normal;
  486.   color: #AAA;
  487. }
  488.  
  489. div#comment-list2 h5 a {
  490.   color: #999;
  491. }
  492.  
  493. div#comment-list2 h5 a:hover {
  494.   color: #EEE;
  495. }
  496.  
  497. div#comment-list2 div.col1 {
  498.   width: 200px;
  499.   float: left;
  500.   text-align: center;
  501. }
  502.  
  503. div#comment-list2 div.col2 {
  504.   width: 500px;
  505.   padding-right: 1em;
  506.   float: left;
  507. }
  508.  
  509. div#comment-list2 div.col3 {
  510.   width: 200px;
  511.   float: left;
  512. }
  513.  
  514. div#comment-list2 div.comment {
  515.   margin-bottom: 1em;
  516. }
  517.  
  518. div#comment-list2 h4.comment-header {
  519.   font-weight: normal;
  520.   color: #AAA;
  521. }
  522.  
  523. div#comment-list2 img.preview {
  524.   display: block;
  525.   margin: auto;
  526. }
  527.  
  528. div#comment-list2 div.post {
  529.   margin: 0 2em 0 0;
  530.   padding: 2em 1em;
  531.   float: left;
  532.   clear: both;
  533.   width: 100%;
  534. }
  535.  
  536. div#post-list div.upload input {
  537.   margin-right: 1em;
  538. }
  539.  
  540. div#post-view img.data {
  541.   margin-right: 5em;
  542. }
  543.  
  544. div#post-view div#related0 img {
  545.   padding: 0;
  546. }
  547.  
  548. div#post-view div#note-container {
  549.   position: absolute;
  550. }
  551.  
  552. div#post-view div.note-box {
  553.   position: absolute;
  554.   border: 1px solid white;
  555.   width: 150px;
  556.   height: 150px;
  557.   cursor: move;
  558.   background: #FFE;
  559.   overflow: auto;
  560.   opacity:0.5;
  561.  
  562.   /* for IE */
  563.   filter:alpha(opacity=50);
  564.   /* for Mozilla */
  565.   -moz-opacity:0.5;
  566. }
  567.  
  568. div#post-view div.note-corner {
  569.   background: white;
  570.   width: 7px;
  571.   height: 7px;
  572.   position: absolute;
  573.   bottom: 0;
  574.   right: 0;
  575.   cursor: se-resize;
  576. }
  577.  
  578. div#post-view div.note-body {
  579.   background: #FFE;
  580.   border: 1px solid white;
  581.   display: none;
  582.   width: 140px;
  583.   height: 100px;
  584.   position: absolute;
  585.   padding: 5px;
  586.   cursor: pointer;
  587.   overflow: auto;
  588. }
  589.  
  590. tn {
  591.  
  592.   font-size: 0.8em;
  593.   color: gray;
  594. }
  595.  
  596. div#post-view div#edit-box textarea {
  597.   width: 90%;
  598. }
  599.  
  600. div#post-view div#edit-box {
  601.   position: absolute;
  602.   z-index: 100;
  603.   background: #FFE;
  604.   border: 1px solid white;
  605.   padding: 1em;
  606. }
  607.  
  608. div#post-view p {
  609.   margin: 0;
  610. }
  611.  
  612. div#post-view span.radio {
  613.   margin-right: 1em;
  614. }
  615.  
  616. div#post-view div.comment {
  617.   margin-bottom: 1em;
  618. }
  619.  
  620. div#post-remove * {
  621.   display: inline;
  622. }
  623.  
  624. div#post-remove img {
  625.   margin: 1em 0;
  626.   display: block;
  627. }
  628.  
  629. div#tag-list {
  630.   text-align: center;
  631.   margin-bottom: 2em;
  632. }
  633.  
  634. div#tag-list div.space a {
  635.   padding-right: 5px;
  636. }
  637.  
  638.  
  639. div#alpha-paginator {
  640.   text-align: center;
  641. }
  642.  
  643. div#alpha-paginator a {
  644.   margin: 0.2em;
  645. }
  646.  
  647. div#wiki-view {
  648.   line-height: 2em;
  649.   width: 50em;
  650.   text-align: left;
  651. }
  652.  
  653. h2.wiki-title {
  654.   color: #EFEFEF;
  655.   margin-bottom: 0.25em;
  656. }
  657.  
  658. span.old-version {
  659.   color: gray;
  660. }
  661.  
  662. p.linked-from {
  663.   color: gray;
  664.   font-style: italic;
  665. }
  666.  
  667. div.diff {
  668.   font-family: monospace;
  669.   font-size: 1.2em;
  670.   margin-top: 1em;
  671. }
  672.  
  673. del {
  674.   font-family: monospace;
  675.   background-color: #f88;
  676.   text-decoration: line-through;
  677. }
  678.  
  679. ins {
  680.   font-family: monospace;
  681.   background-color: #8f8;
  682. }
  683.  
  684. div#admin-edit-user option {
  685.   width: 15em;
  686. }
  687.  
  688. div#upload-list td {
  689.   padding: 0 1em;
  690. }
  691.  
  692. div#user-index {
  693.   width: 40em;
  694. }
  695.  
  696. div#user-list {
  697.   width: 40em;
  698. }
  699.  
  700. div#user-list table {
  701.   width: 100%;
  702. }
  703.  
  704. div#post-add {
  705. }
  706.  
  707. div#post-add table div {
  708.   width: 36em;
  709. }
  710.  
  711. div#post-add div#mytags a,
  712. div#post-add div#recent a,
  713. div#post-add div#related a {
  714.   margin-right: 15px;
  715. }
  716.  
  717. div#post-add label {
  718.   padding: 0;
  719.   margin: 0;
  720. }
  721.  
  722. div#post-popular {
  723.   text-align: center;
  724. }
  725.  
  726. div#post-popular * {
  727.   margin: auto;
  728. }
  729.  
  730. div#post-popular h1 {
  731.   margin-bottom: 1em;
  732. }
  733.  
  734. div#post-tag-history li {
  735.   list-style-type: none;
  736.   margin: 0;
  737. }
  738.  
  739. div#amb-content {
  740.   font-size: 1.2em;
  741.   font-style: italic;
  742. }
  743.  
  744. ul.tag-explore {
  745.   margin: 0;
  746. }
  747.  
  748. ul.tag-explore li {
  749.   list-style-type: none;
  750.   margin: 0 0 0 1em;
  751. }
  752.  
  753. div#tag-explore img {
  754.   margin: 1em;
  755. }
  756.  
  757. span.artist-tag {
  758.   color: #f00;
  759. }
  760.  
  761. span.character-tag {
  762.   color: #0a0;
  763. }
  764.  
  765. span.copyright-tag {
  766.   color: #a0a;
  767. }
  768.  
  769. tr.footer > td {
  770.   padding-top: 1em;
  771. }
  772.  
  773. div#artist td {
  774.   white-space: nowrap;
  775. }
  776.  
  777. div#artist > div#search-form {
  778.   margin-bottom: 2em;
  779. }
  780.  
  781. div#forum > table {
  782.   width: 100%;
  783. }
  784.  
  785. div#forum > table td,
  786. div#forum > table th {
  787.   text-align: center;
  788. }
  789.  
  790. div#forum > table td:first-child,
  791. div#forum > table th:first-child {
  792.   text-align: left;
  793. }
  794.  
  795. div#forum > div.post {
  796.   margin-bottom: 2em;
  797.   float: left;
  798.   clear: left;
  799. }
  800.  
  801. div#forum > div.post div.author {
  802.   float: left;
  803.   width: 15em;
  804.   padding-right: 1em;
  805. }
  806.  
  807. div#forum > div.post div.author h6.author {
  808.   font-size: 1.3em;
  809. }
  810.  
  811. div#forum > div.post div.post-content {
  812.   padding-left: 2em;
  813.   float: left;
  814.   min-height: 4em;
  815. }
  816.  
  817. div#forum > div.post div.footer {
  818.   margin-top: 1em;
  819.   color: #CCC;
  820. }
  821.  
  822. div#forum > div.post div.footer a {
  823.   color: #666;
  824. }
  825.  
  826. div#forum > div.post div.body {
  827.   width: 40em;
  828. }
  829. div.response-list > div.post {
  830.   float: left;
  831.   clear: left;
  832.   margin-bottom: 2em;
  833. }
  834.  
  835. div.response-list > div.post > div.author {
  836.   float: left;
  837.   width: 15em;
  838.   padding-right: 1em;
  839. }
  840.  
  841. div.response-list > div.post > div.author > h6 {
  842.   font-size: 1.3em;
  843. }
  844.  
  845. div.response-list > div.post > div.content {
  846.   float: left;
  847.   width: 30em;
  848.   padding: 0 0 0 10px;
  849.   margin: 0;
  850. }
  851.  
  852. div.response-list > div.post > div.content > div.footer {
  853.   margin-top: 1em;
  854.   color: #CCC;
  855. }
  856.  
  857. div.response-list > div.post > div.content > div.footer a {
  858.   color: #666;
  859. }
  860.  
  861. div#invite > div#new {
  862. }
  863.  
  864. div#invite > div#current {
  865.   margin-top: 2em;
  866. }
  867.  
  868. span.blocked-post {
  869.   display: block;
  870.   float: left;
  871.   text-align: center;
  872.   width: 150px;
  873.   height: 150px;
  874.   margin: 15px;
  875. }
  876.  
  877. p.tn {
  878.   font-size: smaller;
  879.   color: gray;
  880. }
  881.  
  882. ul.news li {
  883.   margin-bottom: 0.5em;
  884. }
  885.  
  886. div.help {
  887.   width: 40em;
  888.   margin-top: 2em;
  889. }
  890.  
  891. div.help div.section {
  892.   margin-bottom: 4em;
  893. }
  894.  
  895. div.help div.section div.section {
  896.   margin-bottom: 2em;
  897. }
  898.  
  899. div.help h4 {
  900.   margin-bottom: 0.5em;
  901.   color: #060;
  902. }
  903.  
  904. div.help h1, div.help h2, div.help h3, div.help h4 {
  905.   margin: 0 0 0.5em 0;
  906. }
  907.  
  908. dt {
  909.   font-weight: bold;
  910. }
  911.  
  912. dt.bad {
  913.   color: red;
  914. }
  915.  
  916. dd {
  917.   margin-bottom: 1em;
  918. }
  919.  
  920. div.help div.code {
  921.   border: 1px dashed green;
  922.   margin: 1em 0;
  923.   padding: 1em 2em;
  924.   background: #EEE;
  925.   overflow: hidden;
  926.   font-family: monospace;
  927. }
  928.  
  929. a.code {
  930.   font-family: monospace;
  931. }
  932.  
  933.  
  934. .adHeadline {
  935. font: bold 12px Arial;
  936. text-decoration: underline;
  937. color: #FFF0FF;
  938. }
  939.  
  940. .adText {
  941. font: normal 12px Arial;
  942. text-decoration: none;
  943. color: #FFF;
  944. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement