33 lines
558 B
SCSS
33 lines
558 B
SCSS
.authbox {
|
|
background: $bg-color-1;
|
|
padding: 15px;
|
|
border-radius: 10px;
|
|
transition: 0.3s;
|
|
border: 1px solid $bg-color-1;
|
|
&.button[type=submit] {
|
|
background: $color-primary;
|
|
}
|
|
}
|
|
.theme-light {
|
|
.authbox {
|
|
background: $body-bg-light;
|
|
border-color: darken($body-bg-light, 10%);
|
|
}
|
|
}
|
|
img.avatar_img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
label[for=avatar] {
|
|
img {
|
|
&:hover {
|
|
cursor:pointer;
|
|
}
|
|
}
|
|
}
|
|
input[name=avatar] {
|
|
&.sr-only {
|
|
display: none;
|
|
}
|
|
}
|