blue.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Personal website of UltrasonicMadness
  3. * Copyright (C) 2018 UltrasonicMadness
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as
  7. * published by the Free Software Foundation, either version 3 of the
  8. * License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. nav
  19. {
  20. background-color:#336;
  21. color:#669;
  22. }
  23. a
  24. {
  25. color:#99f;
  26. }
  27. a:hover, a:focus, #main-logo-container a:hover, #main-logo-container a:focus
  28. {
  29. background-color:#99f;
  30. color:#336;
  31. }
  32. header
  33. {
  34. background-color:#339;
  35. color:#ccf;
  36. }
  37. main
  38. {
  39. background-color:#006;
  40. color:#66c;
  41. }
  42. footer
  43. {
  44. background-color:#003;
  45. color:#669;
  46. }