style.css 558 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. #navigation ul {
  17. list-style-type: none;
  18. }
  19. h1, h2 {
  20. text-transform: uppercase;
  21. }
  22. input[type=text] {
  23. border-radius: 100ex;
  24. border-style: solid;
  25. }
  26. .participant_form label {
  27. width: 300px;
  28. }
  29. .red {
  30. color: #e00;
  31. }
  32. .orange {
  33. color: #a00;
  34. }
  35. .green {
  36. color: #090;
  37. }