style.css 435 B

12345678910111213141516171819202122232425262728293031323334
  1. html {
  2. background-color: white;
  3. }
  4. body {
  5. margin: 2ex;
  6. padding: 3ex;
  7. background-color: #eee;
  8. border: thin solid #ccc;
  9. border-radius: 2ex;
  10. }
  11. #navigation {
  12. background-color: #ccc;
  13. border: thin solid #aaa;
  14. border-radius: 2ex;
  15. }
  16. h1, h2 {
  17. text-transform: uppercase;
  18. }
  19. input[type=text] {
  20. border-radius: 100ex;
  21. border-style: solid;
  22. }
  23. .red {
  24. color: #e00;
  25. }
  26. .orange {
  27. color: #a00;
  28. }