12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- input[type='email'], input[type='password'] {
- width: 100%;
- }
- .row {
- padding: 4px;
- }
- .row .col {
- display: inline-block;
- white-space: nowrap;
- }
- .row .col.col-3 {
- width: 25%;
- }
- .row .col.col-4 {
- width: 33%;
- }
- .row .col.col-6 {
- width: 50%;
- }
- .row .col.col-8 {
- width: 66%;
- }
- .row .col.col-9 {
- width: 75%;
- }
- .row .col .col-12 {
- width: 100%;
- }
- .login-close {
- position: absolute;
- right: 0;
- top: 0;
- padding: 8px;
- font-family: sans-serif;
- }
- .login-close:hover {
- color: gray;
- cursor: pointer;
- }
- .error {
- color: red;
- }
- #login-container {
- background-color: white;
- width: 50%;
- height: 25%;
- text-align: center;
- border-radius: 15px;
- margin-left: 25%;
- margin-top: 25%;
- min-width: 240px;
- position: absolute;
- top: 0;
- left: 0;
- padding: 15px;
- }
|