100 lines
1.4 KiB
SCSS
100 lines
1.4 KiB
SCSS
@import "slovenscina-elements.scss";
|
|
|
|
|
|
|
|
.background {
|
|
background: $grey-dark;
|
|
padding-bottom:200px;
|
|
width:100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.login-panel {
|
|
position:relative;
|
|
width:50%;
|
|
margin:auto;
|
|
text-align: left;
|
|
top: 100px;
|
|
box-shadow: 0 0 2.5rem 0 rgba(0,0,0,0.25);
|
|
}
|
|
|
|
.register-button {
|
|
position:relative;
|
|
margin-top:2rem;
|
|
display: block;
|
|
text-decoration: none;
|
|
color:$grey-dark;
|
|
img {
|
|
width:2rem;
|
|
}
|
|
h3 {
|
|
position:absolute;
|
|
left:3rem;
|
|
top:0;
|
|
margin:0;
|
|
}
|
|
p {
|
|
position:absolute;
|
|
left:3rem;
|
|
bottom:0;
|
|
margin:0;
|
|
font-size:0.875rem;
|
|
font-weight: 300;
|
|
}
|
|
}
|
|
|
|
.input-wrapper {
|
|
position:relative;
|
|
height:4rem;
|
|
.input-icon {
|
|
position:absolute;
|
|
left:0;
|
|
top:0.5rem;
|
|
display:block;
|
|
width:1.5rem;
|
|
}
|
|
.input-floating-label {
|
|
position:absolute;
|
|
left: 3rem;
|
|
right:0;
|
|
display:block;
|
|
input, select {
|
|
padding:0.25rem 0;
|
|
background: none;
|
|
border:none;
|
|
display:block;
|
|
width:100%;
|
|
border-bottom: 2px solid $grey;
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
label {
|
|
font-size: 10px;
|
|
color: $black;
|
|
}
|
|
label.input-hint {
|
|
color:$grey-dark;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
.back-to-login {
|
|
position:relative;
|
|
height:2rem;
|
|
img {
|
|
position:absolute;
|
|
top:0.25rem;
|
|
left:0.5rem;
|
|
}
|
|
a {
|
|
position: relative;
|
|
top:0;
|
|
left:3rem;
|
|
text-decoration: none;
|
|
color:$black;
|
|
}
|
|
}
|