source: OpenWorkouts-current/ow/static/less/ui/form.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: 722 bytes
Line 
1/* Generic default forms */
2form{
3    width: 100%;
4}
5
6legend {
7    display: none;
8}
9
10fieldset {
11    border: none;
12    padding: 0;
13}
14
15fieldset > div,
16fieldset > p {
17    margin-bottom: 1.5em;
18}
19
20label {
21    display: block;
22    font-size: 13px;
23    margin-bottom: .25em;
24}
25input {
26    width: 100%;
27    padding: .5em .75em;
28    border: 1px solid transparent;
29    border-radius: 2px;
30}
31
32.ow-forms {
33    label {
34        display: block;
35        margin-bottom: .35em;
36        color: @color-main-medium;
37    }
38    textarea {
39        resize: vertical;
40        height: 200px;
41    }
42    textarea,
43    input {
44        width: 100%;
45        padding: .65em;
46        border-radius: 4px;
47        border: 1px solid @color-main-light;
48    }
49}
Note: See TracBrowser for help on using the repository browser.