Files
hermes/WebApp/wwwroot/css/style.css
Maksogonowy 7c78386b04 CSS update
Made the site look closer to the mock-up
2025-05-16 12:03:02 +02:00

53 lines
980 B
CSS

body {
color: #2898BD;
}
.input-field {
border-radius: 10px;
padding: 10px;
border: 2px solid #2898BD;
box-shadow: none;
}
.input-field:focus {
outline: none;
box-shadow: none;
border: 3px solid #2898BD;
}
.button {
border-radius: 30px;
background-color: #2898BD;
color: #FFFFFF;
text-align: center;
font-size: 28px;
padding: 20px 30px;
cursor: pointer;
position: relative;
transition: all 0.5s;
text-transform: uppercase;
border: none;
}
.button:hover {
background-color: rgb(189, 0, 0);
}
.button span:first-child {
padding-left: 10px;
transition: all 0.5s;
}
.button:hover span:first-child {
padding-left: 0px;
}
.button span:last-child {
opacity: 0;
transition: all 0.5s;
padding-left: 0px;
}
.button:hover span:last-child {
opacity: 1;
padding-left: 10px;
}