Files
jupyterhub/share/jupyter/hub/static/less/login.less
Min RK 827f694589 simplify login css
use mixins, remove lots of unnecessary CSS
2015-03-08 17:21:04 -07:00

49 lines
1.1 KiB
Plaintext

#login-main {
display: table;
height: 80vh;
form {
display: table-cell;
vertical-align: middle;
margin: auto auto 20% auto;
width: 350px;
font-size: large;
}
.input-group, input[type=text], button {
width: 100%;
}
input[type=submit] {
margin-top: 16px;
}
.form-control:focus, input[type=submit]:focus {
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @jupyter-orange;
border-color: @jupyter-orange;
outline-color: @jupyter-orange;
}
.message {
color: orangered;
font-weight: bold;
text-align: center;
}
.auth-form-header {
padding: 10px 20px;
color: #fff;
background: @jupyter-orange;
border-radius: @border-radius-large @border-radius-large 0 0;
}
.auth-form-body {
padding: 20px;
font-size: 14px;
border: thin silver solid;
border-top: none;
border-radius: 0 0 @border-radius-large @border-radius-large;
}
}