Files: 8c781ef5dd08dd3ad321614199ef07f2e066c3ec / styles / button.mcss
664 bytesRaw
1 | button { |
2 | color: #5f5f5f; |
3 | padding: 3px 6px; |
4 | background: white; |
5 | border: 2px solid #DDD; |
6 | border-radius: 4px; |
7 | font-size: 130% |
8 | cursor: pointer |
9 | |
10 | :hover { |
11 | color: black |
12 | border-color: #8B8B8B |
13 | } |
14 | |
15 | :focus { |
16 | outline: 1px dotted rgba(255, 255, 255, 0.45) |
17 | } |
18 | |
19 | :active { |
20 | background-color: #DDD !important |
21 | } |
22 | |
23 | -save { |
24 | border-color: #a7c7a6; |
25 | background-color: #eeffee; |
26 | color: #255D24; |
27 | |
28 | :active { |
29 | background-color: #c6e0c5 !important |
30 | } |
31 | |
32 | :hover { |
33 | border-color: #3ac737; |
34 | background-color: #d4ffd4; |
35 | color: #21921f; |
36 | } |
37 | } |
38 | |
39 | -full { |
40 | display: block |
41 | width: 100% |
42 | margin: 15px 0 |
43 | } |
44 | } |
45 |
Built with git-ssb-web