forked from projects/fipamo
55 lines
878 B
CSS
55 lines
878 B
CSS
|
/* LOGIN */
|
||
|
|
||
|
section[role="login"] {
|
||
|
margin: 15% auto;
|
||
|
padding: 10px;
|
||
|
width: 500px;
|
||
|
border-radius: 5px;
|
||
|
display: grid;
|
||
|
grid-template-columns: 28.5% 1fr;
|
||
|
gap: 10px;
|
||
|
}
|
||
|
|
||
|
section[role="login"] form input {
|
||
|
width: 95%;
|
||
|
height: 30px;
|
||
|
padding: 5px;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
section[role="login"] form button {
|
||
|
padding: 10px 5px;
|
||
|
width: 82%;
|
||
|
}
|
||
|
|
||
|
section[role="login"] form a {
|
||
|
padding: 10px 5px;
|
||
|
border-radius: 5px;
|
||
|
width: 10%;
|
||
|
height: 20px;
|
||
|
display: inline-block;
|
||
|
background: var(--tertiary);
|
||
|
vertical-align: top;
|
||
|
text-align: center;
|
||
|
margin: 0 0 0 10px;
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
|
||
|
/* LOGIN */
|
||
|
|
||
|
@media only screen and (max-width: 500px) {
|
||
|
section[role="login"] {
|
||
|
width: 97%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media only screen and (max-width: 375px) {
|
||
|
section[role="login"] {
|
||
|
grid-template-columns: 1fr;
|
||
|
}
|
||
|
|
||
|
section[role="login"] img {
|
||
|
width: 50px;
|
||
|
}
|
||
|
}
|