main.css 499 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @font-face {
  2. font-family: 'victormono';
  3. src: url('font/victormono.ttf') format('truetype');
  4. font-weight: normal;
  5. font-style: normal;
  6. }
  7. body{
  8. background-color: #16120e;
  9. color: #ffbf00;
  10. font-size: 16px;
  11. font-family: 'victormono';
  12. margin: 0px
  13. }
  14. h1, h2, h3, h4{
  15. margin: 5px;
  16. }
  17. p{
  18. margin: 5px;
  19. }
  20. pre{
  21. font-size: 16px;
  22. }
  23. a:visited{
  24. color: #ad8200;
  25. }
  26. a:link{
  27. color: #ffbf00;
  28. }
  29. .notop{
  30. margin-top: 0px;
  31. }
  32. .center{
  33. text-align: center;
  34. }