12345678910111213141516171819202122232425262728293031 |
- body {
- display: flex;
- align-items: flex-start;
- font-family: "Montserrat", sans-serif;
- }
- input[type="text"] {
- padding: 10px;
- border: 0;
- box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
- margin: 1vh;
- }
- textarea {
- resize: none;
- font-size: 14px;
- overflow: auto;
- outline: none;
- padding: 2vh;
- box-sizing: border-box;
- margin: 1vh 0;
- }
- button {
- background-color: white;
- color: black;
- width: 20vh;
- height: 5vh;
- border-radius: 5px;
- border: 2px solid #000000;
- }
|