Guest User

Untitled

a guest
Jul 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.72 KB | None | 0 0
  1. /* Page */
  2. html {
  3.     font-size: 100%;
  4. }
  5. body {
  6.     margin: 0;
  7.     padding: 10px 20px;
  8.     font-family: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
  9.     font-size: .8em;
  10.     line-height: 1.25;
  11.     color: #F0E39E;
  12.     background: #181A12;
  13. }
  14.  
  15. /* Titres */
  16. h1, h2, h3, h4, h5, h6 {
  17.     margin: 1em 0 .5em 0;
  18. }
  19. h1, h2 {
  20.     font-family: Georgia, "Bitstream Vera Serif", Norasi, serif;
  21.     font-weight: bold;
  22. }
  23. h1 {
  24.     font-size: 3em;
  25.     font-style: italic;
  26.     text-decoration: underline;
  27. }
  28. h2 {font-size: 1.8em;}
  29. h3 {font-size: 1.2em;}
  30. h4 {font-size: 1em;}
  31.  
  32. /* Listes */
  33. ul, ol {
  34.     margin: .75em 0 .75em 24px;
  35.     padding: 0;
  36. }
  37. ul {
  38.     list-style: square;
  39. }
  40. li {
  41.     margin: 0;
  42.     padding: 0;
  43. }
  44.  
  45.  
  46. p {
  47.     margin: .75em 0;
  48. }
  49. li p, blockquote p {
  50.     margin: .5em 0;
  51. }
  52.  
  53.  
  54. blockquote, q {
  55.     font-size: 1.1em;
  56.     font-style: italic;
  57.     font-family: Georgia, "Bitstream Vera Serif", Norasi, serif;
  58. }
  59. blockquote {
  60.     margin: .75em 0 .75em 24px;
  61. }
  62. cite {
  63.     font-style: italic;
  64. }
  65.  
  66.  
  67. a {
  68.     color: mediumblue;
  69.     text-decoration: underline;
  70. }
  71. a:hover, a:focus {
  72.     color: crimson;
  73. }
  74. a img {
  75.     border: none;
  76. }
  77.  
  78.  
  79. em {
  80.     font-style: italic;
  81. }
  82. strong {
  83.     font-weight: bold;
  84.     color: dimgray;
  85. }
  86.  
  87.  
  88.  
  89. pre, code {
  90.     font-size: 100%;
  91.     font-family: "Bitstream Vera Mono", "Lucida Console", "Courier New", monospace;
  92. }
  93. pre {
  94.     width: 90%;
  95.     overflow: auto;
  96.     overflow-y: hidden;
  97.     margin: .75em 0;
  98.     padding: 12px;
  99.     background: #eee;
  100.     color: #555;
  101. }
  102. pre strong {
  103.     font-weight: normal;
  104.     color: black;
  105. }
  106. #copyright {
  107.     margin: 20px 0 5px 0;
  108.     text-align: right;
  109.     font-size: .8em;
  110.     color: #848F63;
  111. }
  112. #copyright a {
  113.     color: #848F63;
  114.     text-decoration: none;
  115. }
  116. #copyright a:hover, #copyright a:focus {
  117.     text-decoration: underline;
  118. }
Add Comment
Please, Sign In to add comment