footer.css 665 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. p {
  2. display: block; }
  3. footer {
  4. color: white;
  5. background-color: grey; }
  6. footer p {
  7. text-align: center; }
  8. footer .flex {
  9. padding: 2em 0;
  10. display: flex;
  11. justify-content: space-around;
  12. background-color: #243B4A; }
  13. footer .flex h2 {
  14. margin-top: 0; }
  15. .copyright {
  16. padding: 2em; }
  17. /* there is only one form on the website */
  18. form label {
  19. min-width: 10em;
  20. display: inline-block;
  21. padding-left: 2em; }
  22. form input {
  23. min-width: 15em;
  24. display: inline-block;
  25. margin-left: 2em;
  26. margin-bottom: 2em; }
  27. form textarea {
  28. margin-left: 2.5em; }
  29. form ul {
  30. list-style-type: none; }
  31. form fieldset {
  32. margin-bottom: 2em; }