style.css 466 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* This file is released under CC0 */
  2. html,
  3. body
  4. {
  5. height: 95%;
  6. background: black;
  7. color: white;
  8. }
  9. input
  10. {
  11. width: 95%;
  12. background: black;
  13. color: white;
  14. border: 0px;
  15. }
  16. #header
  17. {
  18. width: 100%;
  19. font-size: 36px;
  20. background-color: white;
  21. color: black;
  22. }
  23. #logo
  24. {
  25. margin-left: 6px;
  26. }
  27. #content
  28. {
  29. min-height: 100%;
  30. }
  31. .error
  32. {
  33. color: red;
  34. }
  35. .footerlink
  36. {
  37. text-decoration: none;
  38. }
  39. a:visited
  40. {
  41. color:blue;
  42. }