forked from beba/foerderbarometer
23 lines
477 B
CSS
23 lines
477 B
CSS
|
|
.page-centered .button-login {
|
||
|
|
width: 40vw;
|
||
|
|
height: 6vh;
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
font-weight: bold;
|
||
|
|
font-size: 4vh;
|
||
|
|
margin: 0 auto;
|
||
|
|
background-color: #79AEC8;
|
||
|
|
color: #000000;
|
||
|
|
text-decoration: none;
|
||
|
|
padding: 10px 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.page-centered .button-login:hover {
|
||
|
|
background-color: #659DB8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.page-centered .button-login:focus-visible {
|
||
|
|
outline: 2px solid #000;
|
||
|
|
outline-offset: 2px;
|
||
|
|
}
|