styles.css 490 B

12345678910111213141516171819202122232425262728293031
  1. body {
  2. display: flex;
  3. align-items: flex-start;
  4. font-family: "Montserrat", sans-serif;
  5. }
  6. input[type="text"] {
  7. padding: 10px;
  8. border: 0;
  9. box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
  10. margin: 1vh;
  11. }
  12. textarea {
  13. resize: none;
  14. font-size: 14px;
  15. overflow: auto;
  16. outline: none;
  17. padding: 2vh;
  18. box-sizing: border-box;
  19. margin: 1vh 0;
  20. }
  21. button {
  22. background-color: white;
  23. color: black;
  24. width: 20vh;
  25. height: 5vh;
  26. border-radius: 5px;
  27. border: 2px solid #000000;
  28. }