12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- body {
- font-size: medium;
- font-family: Verdana;
- margin: 10px;
- padding: 10px;
- }
- div {
- color: rgb(6, 58, 55);
- background-color: white;
- width: 400px;
- }
- input {
- border: 2px solid rgb(9, 52, 71);
- border-radius: 4px;
- height: 50px;
- width: 300px;
- font-size: medium;
- font-family: Verdana;
- }
- input[type=text]:focus {
- background-color: rgb(220, 235, 240);
- }
- button {
- border-radius: 12px;
- cursor: pointer;
- border-radius: 5px;
- text-align: center;
- background-color: #e7e7e7;
- color: black;
- /* Gray */
- height: 50px;
- width: 100px;
- font-size: 20px;
- font-family: Verdana;
- }
- button:hover {
- box-shadow: 0 12px 16px 0 rgba(124, 108, 108, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
- }
|