1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 05:31:58 +02:00
onion/sass/ascribe_login.scss
2015-07-07 18:07:12 +02:00

85 lines
1.4 KiB
SCSS

$break-small: 764px;
.ascribe-btn-login {
padding: 0.5em;
font-weight: 500;
text-align: center;
background-color: rgba(2, 182, 163, 1);
color: white;
font-size: 1.2em;
border-radius: 0;
width: 100%;
border:none;
//margin-left: 1.2em;
&:hover {
color: white;
background-color: rgba(2, 182, 163, 0.8);
border: none;
}
&:active, &:focus {
color: white;
background-color: rgba(2, 182, 163, 0.6);
border: none;
}
&[disabled] {
opacity: .3;
}
}
.ascribe-btn-login-spinner{
background-color: rgba(2, 182, 163, 0.4);
padding: 0.4em;
img {
height: 1.6em;
}
&:hover {
background-color: rgba(2, 182, 163, 0.4);
}
&:active, &:focus {
background-color: rgba(2, 182, 163, 0.4);
}
}
.ascribe-login-wrapper {
width: 80%;
margin: 0 auto;
max-width: 600px;
@media screen and (max-width: $break-small) {
width: 100%;
}
}
.ascribe-login-text {
font-size: 0.8em;
padding: 0 0 1em 0;
margin-left: 0.4em;
margin-top: 1.5em;
color: rgba(0, 0, 0, 0.6);
}
.ascribe-login-header {
font-size: 2em;
margin-left: 0.8em;
}
.ascribe-form {
hr {
color: rgba(0, 0, 0, 0.05);
border: none;
height: 1px;
background-color: rgba(0, 0, 0, 0.05);
margin-top: 0;
}
}
%vertical-align {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}