| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- .login-form {
- width: 50%;
- float: left;
- margin-left: 25%;
- margin-right: 25%;
- padding-top: 50px;
- }
- .login-box {
- width: 700px;
- margin: 100px auto 0 auto;
- }
- .login-box-logo {
- text-align: center;
- padding-bottom: 50px;
- }
- .login-inner-box {
- background: @grafanaPanelBackground;
- }
- .login-tab-header {
- background: @grafanaTargetBackground;
- text-align: center;
- }
- .btn-login-tab {
- background: transparent;
- border: none;
- font-size: 15px;
- padding: 10px 10px;
- &.active {
- background: darken(@grafanaTargetBackground, 5%);
- color: @white;
- }
- &:focus {
- outline: none;
- }
- font-weight: bold;
- display: inline-block;
- width: 170px;
- color: @textColor;
- }
- .password-strength {
- display: block;
- width: 50px;
- overflow: visible;
- white-space: nowrap;
- padding-top: 3px;
- margin-left: 97px;
- color: darken(@textColor, 20%);
- border-top: 3px solid @red;
- &.password-strength-ok {
- width: 170px;
- border-top: 3px solid lighten(@yellow, 10%);
- }
- &.password-strength-good {
- width: 254px;
- border-top: 3px solid lighten(@green, 10%);
- }
- }
- .login-submit-button-row {
- text-align: center;
- margin-top: 40px;
- button {
- padding: 9px 7px;
- font-size: 14px;
- font-weight: bold;
- width: 150px;
- display: inline-block;
- border: 1px solid lighten(@btnInverseBackground, 10%);
- }
- }
- .login-oauth {
- margin-top: 30px;
- padding: 10px;
- background: @grafanaTargetBackground;
- .btn-google {
- background: #dd4b39;
- color: white;
- }
- .btn-github {
- background: #555;
- color: white;
- }
- }
|