fipamo/public/assets/css/dash/init.css

117 lines
1.8 KiB
CSS
Raw Permalink Normal View History

/* LOGIN */
section.login,
section.password-reset,
section.restore-fresh,
section.restore-backup {
margin: 15% auto;
padding: 10px;
2024-10-29 17:31:23 +01:00
max-width: 500px;
border-radius: 5px;
2024-10-29 17:31:23 +01:00
display: flex;
gap: 10px;
visibility: visible;
}
section.restore-backup {
display: none;
visibility: hidden;
color: var(--white);
}
section.login form input {
height: 30px;
padding: 5px;
margin-bottom: 10px;
}
section.login form button {
padding: 10px 5px;
width: 82%;
}
section.login form a {
padding: 10px 5px;
border-radius: 5px;
width: 10%;
height: 20px;
display: inline-block;
background: var(--primary-highlight);
vertical-align: top;
text-align: center;
margin: 0 0 0 10px;
font-weight: 600;
}
/* PASSWORD-RESET */
section.password-reset form button {
padding: 10px 5px;
width: 82%;
}
section.password-reset form input {
width: 95%;
height: 30px;
padding: 5px;
margin-bottom: 10px;
}
/* SITE RESTORE */
2024-10-29 17:31:23 +01:00
/*section.restore-fresh form input {
height: 30px;
padding: 5px;
margin-bottom: 10px;
2024-10-29 17:31:23 +01:00
}*/
section.restore-backup form button {
padding: 10px 5px;
width: 82%;
}
section.restore-backup form input {
height: 30px;
padding: 5px;
margin-bottom: 10px;
}
/* RESPONSIVE */
@media only screen and (max-width: 500px) {
section.login,
section.password-reset,
section.restore-fresh,
section.restore-backup {
2024-10-29 17:31:23 +01:00
flex-direction: column;
margin: 10px auto;
}
section.login img,
section.password-reset img,
section.restore-fresh img,
section.restore-backup img {
width: 50px;
}
}
2024-10-29 17:31:23 +01:00
.form-label {
height: 30px;
width: 90px;
margin-right: 1px;
font-weight: bold;
background: var(--secondary);
color: var(--primary);
}
.form-input {
height: 30px;
}
.form-button {
padding: 10px 5px;
width: 100%;
}