source: OpenWorkouts-current/ow/static/less/pages/login.less @ f0e64eb

currentfeature/docs
Last change on this file since f0e64eb was 5cbc4a0, checked in by Segundo Fdez <segun.2@…>, 5 years ago

Update dashboard and login with less.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1.login-content {
2    background-image: url("@{path-img}/back-01.jpg");
3    background-size: cover;
4    display: flex;
5    justify-content: center;
6    align-items: center;
7    min-height: calc(100vh - 98px);
8    padding: 1em 0;
9
10
11    form{
12        max-width: 380px;
13        background-color: fadeout(@color-main, 40%);
14        border-radius: 6px;
15        padding: 2em  1.5em;
16        div {
17            margin-bottom: 1.5em;
18        }
19    }
20
21    label {
22        color: @color-main-light;
23    }
24    a {
25        color: @color-main-light;
26        font-size: 13px;
27        text-decoration: none;
28        margin-right: .75em;
29        &:hover {
30            color: white;
31        }
32    }
33
34    .button {
35        transition: all 500ms ease-in-out;
36        background-color: @color-app;
37        color: white;
38        text-transform: uppercase;
39        &:hover {
40            background-color: darken(@color-app, 10%);
41        }
42    }
43
44    .message {
45        padding: .5em;
46        margin: 0;
47        text-align: center;
48        .font-size(13);
49        &.message-error{
50            color: white;
51            background-color: red;
52        }
53    }
54}
55
56/*
57.login-remember {
58    color: @color-main-medium;
59    .font-size(14);
60    text-decoration: none;
61    font-weight: 300;
62    &:hover{
63        color: @color-main-light;
64    }
65}
66<a class="login-remember" href="#">Forgot your password?</a>
67*/
Note: See TracBrowser for help on using the repository browser.