diaspora/app/assets/stylesheets/registration.scss

79 lines
1.5 KiB
SCSS

.page-registrations {
// For the mobile version which doesn't have the same global CSS
background: $body-bg;
#main {
padding: 0;
padding-top: 46px;
}
// End specific mobile
// Overriding bootstrap
.form-control {
display: inline-block;
width: 320px;
}
// End Overriding bootstrap
.fields {
margin: $triple-margin 0;
@media screen and (max-width: $breakpoint) {
flex-direction: column-reverse;
margin: $double-margin 0;
}
section {
border-left: solid 3px $brand-primary;
padding-left: 10px;
}
}
.advice {
max-width: 450px;
}
.captcha {
align-items: center;
display: flex;
.captcha-img {
margin-left: 5px;
order: 2;
}
}
.import-and-ball-container {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.import-instructions {
align-self: flex-start;
background-color: lighten($brand-primary, 40);
border: 2px solid lighten($brand-primary, 20);
border-radius: $radius;
font-size: $smaller;
margin-left: $default-margin;
padding: $default-margin;
width: 240px;
@media screen and (max-width: $breakpoint) {
margin-bottom: $double-margin;
margin-left: 0;
width: 100%;
}
}
.ball {
background: image-url('branding/ball.png') no-repeat;
background-size: contain;
height: 250px;
width: 250px;
@media screen and (max-width: $breakpoint) {
display: none;
}
}
}