gitlab-org--gitlab-foss/app/assets/stylesheets/sections/login.scss

58 lines
877 B
SCSS
Raw Normal View History

2012-01-27 17:58:10 +00:00
/* Login Page */
.login-page {
h1 {
font-size: 3em;
font-weight: 200;
}
2012-01-27 17:58:10 +00:00
.login-box{
max-width: 304px;
position: relative;
@include border-radius(5px);
margin: auto;
background: white;
}
2012-11-06 13:30:48 +00:00
.login-logo{
margin: 10px 0 30px 0;
display: block;
}
2013-08-12 09:38:30 +00:00
.form-control {
background-color: #f1f1f1;
font-size: 16px;
padding: 14px 10px;
width: 100%;
height: auto;
&.top {
@include border-radius(5px 5px 0 0);
margin-bottom: 0px;
}
&.bottom {
@include border-radius(0 0 5px 5px);
border-top: 0;
margin-bottom: 20px;
}
&.middle {
border-top: 0;
margin-bottom:0px;
@include border-radius(0);
}
}
2013-08-12 09:38:30 +00:00
.login-box a.forgot {
float: right;
padding-top: 6px
2013-08-12 09:38:30 +00:00
}
.devise-errors {
h2 {
font-size: 14px;
color: #a00;
}
}
}