style.css 946 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. body { font-family:sans-serif;font-size:12pt;}
  2. body.cfn{background-color:black;color:lime}
  3. p {font-family:serif;}
  4. a {
  5. text-decoration:none;
  6. color:#e12323;
  7. }
  8. a:hover {
  9. text-decoration: underline darkblue;
  10. font-size: large;
  11. color: blueviolet;
  12. }
  13. ul { list-style:none;}
  14. hr { border:0; border-top:1px dotted #000;}
  15. .logo{float:right;} body { max-width: 800px; left: 50%; position: relative; transform: translate(-50%,0%); }
  16. footer {text-align:center; font-size:0.7em; padding-top:30px;}
  17. .copyleft {transform:rotate(180deg); display:inline-block;}
  18. section>h3 {
  19. text-align: right;
  20. margin-right: 2rem;
  21. }
  22. section p:nth-child(2) {
  23. font-size: large;
  24. margin: auto 6rem;
  25. text-align: justify;
  26. }
  27. pre {
  28. margin: 8px 0px 8px 0px;
  29. padding: 8px 8px 8px 8px;
  30. white-space: inherit;
  31. border-width: 1px;
  32. border-style: dotted;
  33. border-color: #000000;
  34. background-color: #F5F6F7;
  35. font-family: "Mono";
  36. }