Todos.css 1002 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. body {
  2. background-color: white;
  3. box-sizing: border-box;
  4. color: #81C199;
  5. padding-top: 3em;
  6. }
  7. /**
  8. * @see https://www.paulirish.com/2012/box-sizing-border-box-ftw/
  9. */
  10. *, *:before, *:after {
  11. box-sizing: inherit;
  12. }
  13. h1 {
  14. font-size: 150%;
  15. font-weight: normal;
  16. letter-spacing: 0.2em;
  17. margin-left: auto;
  18. margin-right: auto;
  19. text-align: center;
  20. text-transform: uppercase;
  21. }
  22. form {
  23. margin-left: 1em;
  24. margin-right: 1em;
  25. }
  26. form button,
  27. form input {
  28. }
  29. form button[type="submit"] {
  30. background-color: #8bd7a9;
  31. border-radius: 1em 1em;
  32. border-style: none;
  33. color: white; /* user-agent says black */
  34. display: block;
  35. font-size: 80%;
  36. letter-spacing: 0.05em;
  37. margin: 1.5em 0;
  38. padding: 0.5em;
  39. text-transform: uppercase;
  40. width: 100%;
  41. }
  42. form input[type="text"] {
  43. border-color: #81C199;
  44. border-radius: 1em 1em;
  45. border-style: solid;
  46. border-width: 1px;
  47. display: block;
  48. margin: 1.5em 0;
  49. padding: 0.5em 0 0.5em 1em;
  50. width: 100%;
  51. }
  52. li {
  53. list-style: none;
  54. }