style.css 998 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* See humans.html for full thanks */
  2. /* What font to use */
  3. /* Yes, I know that using <ubuntu> is such a lazy hack,
  4. but come on... it's being used on a page called "Stolas
  5. from Helluva Boss Ate Blitzo's BALLS Homepage" ;-) */
  6. h1, h2, h3, a, li, th, br, p, ubuntu {
  7. font-family: Ubuntu, "Noto Sans", "Liberation Sans", Helvetica, Arial, sans-serif;
  8. }
  9. pre, tt, xmp {
  10. font-family: monospace, "Ubuntu Monospace", Courier;
  11. }
  12. p {
  13. font-family: Ubuntu, "Noto Sans", "Liberation Sans", Helvetica, Arial, sans-serif;
  14. }
  15. a {
  16. text-decoration: underline;
  17. }
  18. a:hover {
  19. text-decoration: none;
  20. }
  21. /* The following was written by devils.gay - thank you */
  22. uppercase,yell {
  23. text-transform: uppercase;
  24. }
  25. uppercase {
  26. text-transform: uppercase;
  27. }
  28. body {
  29. margin: auto ;
  30. background-color: red;
  31. color:#000;
  32. }
  33. /* unvisited link */
  34. a:link {
  35. color: #000;
  36. }
  37. /* visited link */
  38. a:visited {
  39. color: #000;
  40. }
  41. /* mouse over link */
  42. a:hover {
  43. color: #000;
  44. }
  45. /* selected link */
  46. a:active {
  47. color: #000;
  48. }