12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- // Place all the styles related to the Authentication controller here.
- // They will automatically be included in application.css.
- // You can use Sass (SCSS) here: http://sass-lang.com/
- body .void {
- padding-top: 40px;
- padding-bottom: 40px;
- background-color: #eee !important;
- }
- .central-form {
- max-width: 330px;
- padding: 15px;
- margin: 0 auto;
- }
- .central-form .central-form-heading,
- .central-form .checkbox {
- margin-bottom: 10px;
- }
- .central-form .checkbox {
- font-weight: normal;
- }
- .central-form .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;
- }
- .central-form .form-control:focus {
- z-index: 2;
- }
- .central-form input.input-top[type="email"] {
- margin-bottom: -1px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
- }
- .central-form .input-top {
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
- .central-form .input-middle {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- }
- .central-form .input-bottom {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- }
- .central-form .input-only {
- border-radius: 4px;
- margin-bottom: 10px !important;
- }
- .central-form input[type="password"] {
- margin-bottom: 10px;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- @import "bootstrap-sprockets";
- @import "bootstrap";
|