2024-02-29 20:00:59 +01:00
|
|
|
/* LOGIN */
|
|
|
|
|
|
|
|
section.login,
|
2024-04-16 23:36:57 +02:00
|
|
|
section.password-reset,
|
|
|
|
section.restore-fresh,
|
|
|
|
section.restore-backup {
|
2024-02-29 20:00:59 +01:00
|
|
|
margin: 15% auto;
|
|
|
|
padding: 10px;
|
2024-10-29 17:31:23 +01:00
|
|
|
max-width: 500px;
|
2024-02-29 20:00:59 +01:00
|
|
|
border-radius: 5px;
|
2024-10-29 17:31:23 +01:00
|
|
|
display: flex;
|
2024-02-29 20:00:59 +01:00
|
|
|
gap: 10px;
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
2024-04-16 23:36:57 +02:00
|
|
|
section.restore-backup {
|
2024-02-29 20:00:59 +01:00
|
|
|
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;
|
2024-03-21 21:51:24 +01:00
|
|
|
background: var(--primary-highlight);
|
2024-02-29 20:00:59 +01:00
|
|
|
vertical-align: top;
|
|
|
|
text-align: center;
|
|
|
|
margin: 0 0 0 10px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* PASSWORD-RESET */
|
|
|
|
|
2024-04-16 23:36:57 +02:00
|
|
|
section.password-reset form button {
|
2024-02-29 20:00:59 +01:00
|
|
|
padding: 10px 5px;
|
|
|
|
width: 82%;
|
|
|
|
}
|
|
|
|
|
2024-04-16 23:36:57 +02:00
|
|
|
section.password-reset form input {
|
2024-02-29 20:00:59 +01:00
|
|
|
width: 95%;
|
|
|
|
height: 30px;
|
|
|
|
padding: 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SITE RESTORE */
|
|
|
|
|
2024-10-29 17:31:23 +01:00
|
|
|
/*section.restore-fresh form input {
|
2024-02-29 20:00:59 +01:00
|
|
|
height: 30px;
|
|
|
|
padding: 5px;
|
|
|
|
margin-bottom: 10px;
|
2024-10-29 17:31:23 +01:00
|
|
|
}*/
|
2024-02-29 20:00:59 +01:00
|
|
|
|
2024-04-16 23:36:57 +02:00
|
|
|
section.restore-backup form button {
|
2024-02-29 20:00:59 +01:00
|
|
|
padding: 10px 5px;
|
|
|
|
width: 82%;
|
|
|
|
}
|
|
|
|
|
2024-04-16 23:36:57 +02:00
|
|
|
section.restore-backup form input {
|
2024-02-29 20:00:59 +01:00
|
|
|
height: 30px;
|
|
|
|
padding: 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* RESPONSIVE */
|
|
|
|
|
|
|
|
@media only screen and (max-width: 500px) {
|
|
|
|
|
|
|
|
section.login,
|
2024-04-16 23:36:57 +02:00
|
|
|
section.password-reset,
|
|
|
|
section.restore-fresh,
|
|
|
|
section.restore-backup {
|
2024-10-29 17:31:23 +01:00
|
|
|
flex-direction: column;
|
|
|
|
margin: 10px auto;
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
section.login img,
|
2024-04-16 23:36:57 +02:00
|
|
|
section.password-reset img,
|
|
|
|
section.restore-fresh img,
|
|
|
|
section.restore-backup img {
|
2024-02-29 20:00:59 +01:00
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
}
|
2024-10-29 17:31:23 +01:00
|
|
|
|
|
|
|
/* Atomic */
|
|
|
|
.p1 { padding: 5px; }
|
|
|
|
.mr2 { margin-right: 10px; }
|
|
|
|
.mb2 { margin-bottom: 10px; }
|
|
|
|
|
|
|
|
.items-center {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grow {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rounded {
|
|
|
|
overflow: hidden;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-label {
|
|
|
|
height: 30px;
|
|
|
|
width: 90px;
|
|
|
|
margin-right: 1px;
|
|
|
|
font-weight: bold;
|
|
|
|
background: var(--secondary);
|
|
|
|
color: var(--primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-input {
|
|
|
|
height: 30px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-button {
|
|
|
|
padding: 10px 5px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|