mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
51 lines
No EOL
1,011 B
SCSS
51 lines
No EOL
1,011 B
SCSS
form, .login-form{
|
|
// @extend .grid-block;
|
|
.control-group{
|
|
margin-bottom:$grid-padding;
|
|
label{
|
|
float:left;
|
|
}
|
|
.controls{
|
|
margin-left:100px;
|
|
}
|
|
}
|
|
.form-actions{
|
|
@include cf;
|
|
}
|
|
input[type="text"], input[type="password"], textarea, #login-username-or-email{
|
|
display:block;
|
|
padding:5px 6px;
|
|
width:100%;
|
|
font-size:14px;
|
|
@include border-box;
|
|
border:1px solid $grey;
|
|
@include transition(all, 500ms);
|
|
// @include box-shadow(inset 0px 0px 0px 1px black(0.2));
|
|
&:focus{
|
|
outline: none;
|
|
border-color:$red;
|
|
@include box-shadow(0px 0px 5px 0px rgba($red,0.3));
|
|
}
|
|
}
|
|
input[type="text"], input[type="password"], #login-username-or-email{
|
|
height:30px;
|
|
line-height:20px;
|
|
}
|
|
textarea{
|
|
min-height:100px;
|
|
line-height:1.4;
|
|
}
|
|
}
|
|
input[type="submit"], button, .button, .btn{
|
|
-webkit-appearance: none;
|
|
@include border-radius(0px);
|
|
background:$red;
|
|
color:white;
|
|
display:block;
|
|
padding:0px 10px;
|
|
border:none;
|
|
font-size:16px;
|
|
cursor:pointer;
|
|
margin:0;
|
|
float:right;
|
|
} |