rum-goggles/frontend/src/screens/SignIn.css

131 lines
2.5 KiB
CSS
Raw Normal View History

2023-12-13 21:07:40 +00:00
#SignIn {
align-items: center;
background-color: #f3f5f8;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100vh;
}
.signin-input-box {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 10px 0px;
2023-12-13 21:07:40 +00:00
width: 50%;
}
.signin-input-button {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
}
.signin-input {
2023-12-14 21:18:36 +00:00
border-bottom: 2px solid #D6E0EA;
border-left: 2px solid #D6E0EA;
border-right: none;
border-top: 2px solid #D6E0EA;
2023-12-13 21:07:40 +00:00
border-radius: 10rem 0rem 0rem 10rem;
background-color: white;
color: #061726;
outline: none;
2023-12-14 21:18:36 +00:00
padding-bottom: 0.5rem;
padding-left: 1rem;
padding-right: 0;
padding-top: 0.5rem;
width: 70%;
2023-12-13 21:07:40 +00:00
}
.signin-button {
background-color: #85c742;
border: none;
border-radius: 0rem 10rem 10rem 0rem;
color: #061726;
cursor: pointer;
font-weight: bold;
text-decoration: none;
width: 20%;
}
.signin-button:hover {
background-color: #77b23b;
}
.signin-center {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
height: 50%;
width: 50%;
}
2023-12-14 21:18:36 +00:00
.signin-show {
display: flex;
align-items: center;
justify-content: center;
background-color: white;
border-bottom: 2px solid #D6E0EA;
border-left: none;
border-right: 2px solid #D6E0EA;
border-top: 2px solid #D6E0EA;
color: #061726;
cursor: pointer;
font-weight: bold;
text-decoration: none;
width: 10%;
}
.signin-show-icon {
height: 16px;
width: 16px;
}
2023-12-13 21:07:40 +00:00
.signin-label {
color: #061726;
display: flex;
2023-12-13 21:07:40 +00:00
font-family: sans-serif;
font-weight: bold;
justify-content: center;
padding: 5px;
2023-12-13 21:07:40 +00:00
text-transform: uppercase;
width: 100%;
}
.signin-header {
align-items: center;
color: #061726;
display: flex;
flex-direction: column;
font-family: sans-serif;
font-weight: bold;
height: 10%;
justify-content: center;
margin: 20px;
text-align: center;
}
.signin-footer {
2023-12-13 21:07:40 +00:00
align-items: center;
color: #061726;
display: flex;
flex-direction: column;
font-family: sans-serif;
font-weight: bold;
height: 10%;
justify-content: center;
margin: 20px;
text-align: center;
}
.signin-title-text {
font-size: 20px;
margin: 0;
}
.signin-title-subtext {
font-size: 12px;
margin: 0;
}