source: OpenWorkouts-current/ow/static/less/ui/buttons.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: 706 bytes
Line 
1/* Generic button */
2.button {
3    box-sizing: border-box;
4    display: inline-block;
5    text-align: center;
6    vertical-align: middle;
7    cursor: pointer;
8    border: 1px solid transparent;
9    text-decoration: none;
10    font-style: normal;
11    white-space: nowrap;
12    text-overflow: ellipsis;
13    padding: 0.3em 1em;
14    margin: 0;
15    position: relative;
16    overflow: hidden;
17    background: @color-main-light;
18    color: @color-main;
19    font-size: 1em;
20    line-height: 1.25;
21    max-width: 100%;
22    width: auto;
23}
24
25.button-normal {
26    width: auto;
27    &:hover {
28        background-color: @color-main-medium;
29        color: white;
30    }
31}
32.button-important {
33    background-color: @color-app;
34}
Note: See TracBrowser for help on using the repository browser.