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

130 lines
1.8 KiB
SCSS
Raw Normal View History

2012-01-27 17:58:10 +00:00
/* Login Page */
.login-page {
2015-01-08 01:07:36 +00:00
.container {
max-width: 960px;
}
2012-01-27 17:58:10 +00:00
2015-01-08 01:07:36 +00:00
.navbar-gitlab .container {
max-width: none;
}
.flash-container {
margin-bottom: $gl-padding;
}
2015-01-08 01:07:36 +00:00
.brand-holder {
font-size: 18px;
line-height: 1.5;
2015-01-08 01:07:36 +00:00
p {
color: #888;
}
2015-01-08 01:07:36 +00:00
h1:first-child {
font-weight: normal;
margin-bottom: 30px;
margin-top: 0;
}
img {
max-width: 100%;
margin-bottom: 30px;
}
2015-01-08 01:07:36 +00:00
a {
font-weight: bold;
}
}
2012-11-06 13:30:48 +00:00
.login-box {
2015-01-08 01:07:36 +00:00
background: #fafafa;
border-radius: 10px;
box-shadow: 0 0 2px #ccc;
2015-01-08 01:07:36 +00:00
padding: 15px;
.login-heading h3 {
font-weight: 300;
line-height: 1.5;
margin: 0 0 10px;
2015-01-08 01:07:36 +00:00
}
.login-footer {
margin-top: 10px;
2015-02-05 14:56:58 +00:00
p:last-child {
margin-bottom: 0;
}
2015-01-08 01:07:36 +00:00
}
a.forgot {
float: right;
padding-top: 6px
}
.nav .active a {
background: transparent;
}
}
2013-08-12 09:38:30 +00:00
.form-control {
2015-01-08 01:07:36 +00:00
font-size: 14px;
padding: 10px 8px;
width: 100%;
height: auto;
&.top {
@include border-radius(5px 5px 0 0);
margin-bottom: 0;
}
&.bottom {
@include border-radius(0 0 5px 5px);
border-top: 0;
margin-bottom: 20px;
}
&.middle {
border-top: 0;
margin-bottom: 0;
@include border-radius(0);
}
&:active, &:focus {
background-color: #fff;
}
}
2013-08-12 09:38:30 +00:00
.devise-errors {
h2 {
2015-02-05 14:56:58 +00:00
margin-top: 0;
font-size: 14px;
color: #a00;
}
}
2015-01-08 01:07:36 +00:00
.remember-me {
margin-top: -10px;
label {
font-weight: normal;
}
}
}
@media (max-width: $screen-xs-max) {
.login-page {
.col-sm-5.pull-right {
float: none !important;
}
}
}
.oauth-image-link {
margin-right: 10px;
img {
width: 32px;
height: 32px;
}
}