Advertisement
LumChron

Zorlock

Sep 24th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.37 KB | None | 0 0
  1. @import url(/light.css);
  2.  
  3. @import url(https://fonts.googleapis.com/css?family=Alegreya+SC|Almendra|Alegreya:400,400italic);
  4.  
  5. body {
  6.   font-family: "Alegreya";
  7.   font-size: 13px;
  8.   background-color: #999;
  9. }
  10.  
  11. a {
  12.   color: #b00 !important;
  13.   text-decoration: none !important;
  14. }
  15.  
  16. p {
  17.   max-width: 350px;
  18. }
  19.  
  20. ul, ol {
  21.   max-width: 315px;
  22. }
  23. /* ul {
  24.   list-style-type: circle;
  25. } */
  26. ul {
  27.     list-style-type: none;
  28.     position: relative;
  29.     margin-left: 2em;
  30.     padding-left: 0;
  31.  }
  32.  
  33. ul li:before {
  34.     content: "•";
  35.     position: absolute;
  36.     left: -1em;
  37.     color: white;
  38.     margin-right: 5px;
  39. }
  40.  
  41. table {
  42.   max-width: 530px !important;
  43. }
  44. td {
  45.     vertical-align: middle !important;
  46. }
  47.  
  48. /* use small caps instead of bold */
  49. b, strong, th {
  50.   font-weight: normal !important;
  51.   font-family: "Alegreya SC";
  52. /*  font-size: 90% !important; */
  53.   letter-spacing: .5pt;
  54. }
  55. h1, h2, h3, h4 {
  56.   font-weight: normal !important;
  57.   font-family: "Almendra";
  58. }
  59.  
  60. /* headings line-spacing */
  61. p + h3, table + h3 {
  62.   padding-top: 1em;
  63. }
  64.  
  65.  
  66. /* indent paragraphs */
  67. p {
  68.   margin-bottom: 0;
  69. }
  70. p + p {
  71.   text-indent: 1.333em;
  72.   margin-top: 0;
  73. }
  74.  
  75. .logo { max-width: 170px !important  }
  76.  
  77. a.pencil {opacity:0.0 !important}
  78.  
  79. /* iPhone */
  80. @media only screen and (max-device-width: 480px) {
  81.     /* hack for melee weapons table: */
  82.     th + td { min-width: 250px !important }
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement