59 lines
777 B
CSS
59 lines
777 B
CSS
.LoginButtons {
|
|
margin-top: 5rex;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
}
|
|
|
|
.LoginButtons a {
|
|
margin-bottom: 15px;
|
|
width: 12rem;
|
|
display: flex;
|
|
}
|
|
|
|
.Input {
|
|
border: 0;
|
|
background-color: black;
|
|
color: orange;
|
|
border-radius: 5px;
|
|
|
|
padding: 10px;
|
|
|
|
width: 18rem;
|
|
}
|
|
|
|
.MyButton.loginButton {
|
|
padding: 0;
|
|
}
|
|
|
|
.MyButton.loginButton p {
|
|
color: orange;
|
|
transition: color 0.3s ease-in;
|
|
|
|
font-size: 1.3vw;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.loginTitle {
|
|
font-size: 4vw;
|
|
|
|
transition: color 0.3s ease-in;
|
|
}
|
|
|
|
.loginTitle:hover {
|
|
color: orange;
|
|
}
|
|
|
|
@media only screen and (max-width: 800px) {
|
|
.MyButton.loginButton p {
|
|
font-size: 1.5vh;
|
|
}
|
|
}
|
|
|
|
.loginButton:hover p {
|
|
color: black;
|
|
}
|
|
|