56 lines
1,014 B
CSS
56 lines
1,014 B
CSS
body {
|
|
padding-top: 40px;
|
|
padding-bottom: 40px;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.form-signin .form-signin-heading,
|
|
.form-signin .checkbox {
|
|
margin-bottom: 10px;
|
|
}
|
|
.form-signin .checkbox {
|
|
font-weight: normal;
|
|
}
|
|
.form-signin .form-control {
|
|
position: relative;
|
|
height: auto;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
}
|
|
.form-signin .form-control:focus {
|
|
z-index: 2;
|
|
}
|
|
.form-signin input[type="text"] {
|
|
margin-bottom: -1px;
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
.form-signin input[type="password"] {
|
|
margin-bottom: 10px;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
#app-name {
|
|
text-align: center;
|
|
}
|
|
#app-name img {
|
|
width:110px;
|
|
}
|
|
|
|
@media screen and (max-width: 680px) {
|
|
#app-name {
|
|
margin: 0;
|
|
}
|
|
#app-name img {
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
body {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
}
|