style.css 609 B

123456789101112131415161718192021222324252627282930313233343536
  1. body {
  2. background-color:#D0B7DF;
  3. background-image: url("bg.png");
  4. color:#7F92FF;
  5. font-family: Liberation Sans, sans-serif;
  6. font-size:12pt;
  7. }
  8. /* unvisited link */
  9. a:link {
  10. color: #A17FFF;
  11. }
  12. /* visited link */
  13. a:visited {
  14. color: #D67FFF;
  15. }
  16. /* mouse over link */
  17. a:hover {
  18. color: #FF7FED;
  19. }
  20. /* selected link */
  21. a:active {
  22. color: #FF7FB6;
  23. }
  24. /* What font to use */
  25. h1, h2, h3, a, li, th, br, ubuntu, p, blockquote, center {
  26. font-family: Ubuntu, "Noto Sans", "Liberation Sans", Helvetica, Arial, sans-serif;
  27. }
  28. pre, tt, xmp, ubuntu-mono {
  29. font-family: monospace, "Ubuntu Monospace", Courier;
  30. }