source: OpenWorkouts-current/ow/static/less/layout/layout.less @ 01674ff

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

Update forms and fix detail workout view

  • Property mode set to 100644
File size: 872 bytes
Line 
1/* Layout */
2
3.ly-flex {
4    display: flex;
5    justify-content: space-between;
6    &.ly-center {
7        align-items: center;
8    }
9    &.ly-start {
10        justify-content: flex-start;
11    }
12
13    &.ly-2 {
14        flex-flow: row wrap;
15        >div, >li, >p, >a {
16            width: 50%;
17        }
18        &.has-gap {
19            >div, >li, >p, >a   {
20                width: 48%;
21            }
22        }
23    }
24    &.ly-3 {
25        flex-flow: row wrap;
26        >div, >li, >p {
27            width: 33%;
28        }
29        &.has-gap {
30            >div, >li, >p   {
31                width: 31%;
32            }
33        }
34    }
35
36    &.ly-4 {
37        flex-flow: row wrap;
38        >div, >li, >p {
39            width: 25%;
40        }
41        &.has-gap {
42            >div, >li, >p   {
43                width: 23%;
44            }
45        }
46    }
47}
48.ly-flex-end {
49    align-items: flex-end;
50}
Note: See TracBrowser for help on using the repository browser.