39 lines
536 B
SCSS
39 lines
536 B
SCSS
html, body {
|
|
position: relative;
|
|
@include size(100%,100%);
|
|
background-attachment: fixed; }
|
|
|
|
h2 {
|
|
font-size: 1.8em;
|
|
font-weight: normal;
|
|
letter-spacing: 1px;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.showcase--image {
|
|
max-width: 200px;
|
|
}
|
|
|
|
.jumbotron {
|
|
}
|
|
|
|
#join-form {
|
|
background: white;
|
|
display: block;
|
|
width: 400px;
|
|
margin: 0 auto;
|
|
border: 2px solid #ccc;
|
|
}
|
|
|
|
@media (min-width: $screen-lg) {
|
|
.jumbotron {
|
|
height: 400px;
|
|
}
|
|
|
|
#join-form {
|
|
position: absolute;
|
|
top: 60px;
|
|
right: -20px;
|
|
padding: 10px;
|
|
}
|
|
}
|