52 lines
929 B
SCSS
52 lines
929 B
SCSS
#registration {
|
|
.ball {
|
|
height: 633px;
|
|
max-width: 100%;
|
|
background: url("branding/ball.png") no-repeat;
|
|
background-size: contain;
|
|
}
|
|
|
|
.v-center {
|
|
display: table;
|
|
height: 633px;
|
|
|
|
.content {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
|
|
#pod-name {
|
|
text-align: center;
|
|
margin: 12px;
|
|
font-size : 35px;
|
|
}
|
|
}
|
|
}
|
|
|
|
form {
|
|
max-width: 400px;
|
|
|
|
.captcha_img {
|
|
position: absolute;
|
|
left: 10px;
|
|
width: 120px;
|
|
top: 169px;
|
|
}
|
|
|
|
#user_captcha {
|
|
font-size: 16px;
|
|
height: 40px;
|
|
padding: 10px 10px 10px 130px;
|
|
line-height: $line-height;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
border-bottom: 1px solid $border-grey;
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
|
|
#terms > a {
|
|
color: inherit;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|