styles.css 403 B

123456789101112131415161718192021222324252627
  1. body {
  2. background-color: #eaeab6;
  3. }
  4. .foto {
  5. width: 50%;
  6. border: 5px dashed green;
  7. margin: 10px;
  8. }
  9. .centered {
  10. margin-left: auto;
  11. margin-right: auto;
  12. text-align: center;
  13. display: block;
  14. }
  15. h1 {
  16. color: red;
  17. }
  18. a {
  19. color: blue;
  20. text-decoration: none;
  21. border-bottom: 1px dotted blue;
  22. }
  23. form.feedback-form input,
  24. form.feedback-form textarea {
  25. width: 100%;
  26. }