Advertisement
Guest User

September 2019 Teratologies CSS

a guest
Feb 2nd, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. @import url("/light.css");
  2.  
  3. body {font-size: 11pt;}
  4. /* logo on the right */
  5. img.logo {border: none}
  6.  
  7. /* headers */
  8. h1, h2, h3, h4, title {
  9. font-family: Courier;
  10. }
  11. /*Adapted from the Nights Black Agents wiki CSS*/
  12. h1 { font-weight:bold; font-size:150%; border-bottom:solid;
  13. margin-top:3ex; margin-bottom:3ex; }
  14. h1 a { text-decoration:none; color:#000; }
  15. h1 a:hover { background:#ddd; }
  16. h2 { font-weight:bold; font-size:x-large;
  17. color:#fff; background:#000; padding:0.7ex; }
  18. h2 a { text-decoration:none; color:#fff; }
  19. h2 a:hover { background:#49c; }
  20. h3 { font-weight:bold; font-size:x-large;
  21. color:#fff; background:#AAA; padding:0.7ex; }
  22. h3 a { text-decoration:none; color:#fff; }
  23. h4 { font-weight:bold; font-size:larger; }
  24.  
  25. /* dashed line and whitespace after the title */
  26.  
  27.  
  28. hr {
  29. border: none;
  30. margin: 2em;
  31. }
  32.  
  33. /* images, styles to use for the image extension */
  34.  
  35. a.image img {
  36. border: none;
  37. }
  38. a.left {
  39. float: left;
  40. margin: 20px;
  41. }
  42. a.right {
  43. float: right;
  44. margin: 20px;
  45. }
  46.  
  47. /* code */
  48.  
  49. textarea, pre, code, tt { font-family: "Andale Mono", Monaco, "Courrier New", monospace; color: #000;
  50. font-size: 80%;}
  51. pre {
  52. margin: 1em 0;
  53. padding: 1em 2em;
  54. background-color: #ddd;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement