Files: 3043037e5920603ef66d72b8f0ee962925650cca / styles / button.mcss
878 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 | [disabled] { |
24 | color: #999797 !important; |
25 | background: #e3e2e2 !important; |
26 | border-color: #DDD !important; |
27 | } |
28 | |
29 | -pub { |
30 | color: #6a7e6a; |
31 | background-color: #ecfff0; |
32 | border-color: #8ba289; |
33 | } |
34 | |
35 | -save { |
36 | border-color: #a7c7a6; |
37 | background-color: #eeffee; |
38 | color: #255D24; |
39 | |
40 | :active { |
41 | background-color: #c6e0c5 !important |
42 | } |
43 | |
44 | :hover { |
45 | border-color: #3ac737; |
46 | background-color: #d4ffd4; |
47 | color: #21921f; |
48 | } |
49 | } |
50 | |
51 | -full { |
52 | display: block |
53 | width: 100% |
54 | margin: 15px 0 |
55 | } |
56 | } |
57 |
Built with git-ssb-web