| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .loginbox {
- border-radius: 3px;
- .form-group;
- &.onecolumn {
- .make-sm-column(6);
- .make-sm-column-push(3);
- .make-md-column(4);
- .make-md-column-push(4);
- .well;
- }
- &.twocolumns .loginpanel {
- .make-sm-column(4);
- .make-lg-column(3);
- .well;
- }
- &.twocolumns .signuppanel {
- .make-sm-column(7);
- .make-sm-column-push(1);
- .make-lg-column(8);
- .make-lg-column-push(1);
- }
- .loginform {
- .form-label {
- text-align: left;
- width: 100%;
- margin-bottom: 5px;
- }
- .form-input {
- width: 100%;
- margin-bottom: 5px;
- input[type="text"],
- input[type="password"] {
- .form-control;
- width: 100%;
- }
- input[type="submit"] {
- margin: 10px 0 0;
- }
- }
- }
- input[type="submit"] {
- margin: 10px 0 0;
- }
- .desc {
- font-size: 30px;
- line-height: 30px;
- font-weight: 300;
- color: @text-color;
- }
- .subcontent {
- text-align: left;
- padding: 0;
- margin: 0;
- .desc {
- display: none;
- }
- }
- }
|