24 lines
388 B
SCSS
24 lines
388 B
SCSS
#login {
|
|
position : absolute;
|
|
top : 0;
|
|
left : 0;
|
|
margin-top : 200px;
|
|
//background-color : #afc652;
|
|
min-height : 100%;
|
|
min-width : 100%;
|
|
|
|
//color : #fff;
|
|
text-align : center;
|
|
|
|
input[type=text],
|
|
input[type=password] {
|
|
width : 120px;
|
|
}
|
|
|
|
#huge-text {
|
|
font-family : Roboto-Light;
|
|
font-size : 200px;
|
|
color : #ddd;
|
|
text-shadow : 0 1px 0 #fff;
|
|
}
|
|
}
|