Files: 38570576e2f32b105b60787fa9b4643fc58ec156 / styles / dark / button.mcss
995 bytesRaw
1 | button { |
2 | color: #ccc |
3 | padding: 8px 10px |
4 | background: #2d2c2c |
5 | border: 0 |
6 | border-radius: 3px |
7 | font-size: 13px |
8 | cursor: pointer |
9 | transition: background-color 0.25s ease, color 0.25s ease |
10 | |
11 | :hover { |
12 | color: white |
13 | border-color: #434141 |
14 | } |
15 | |
16 | :focus { |
17 | outline: 1px dotted rgba(255, 255, 255, 0.45) |
18 | } |
19 | |
20 | :active { |
21 | background-color: #DDD !important |
22 | } |
23 | |
24 | [disabled] { |
25 | opacity: 0.5 |
26 | } |
27 | |
28 | -add { |
29 | color: #6a7e6a; |
30 | background-color: #ecfff0; |
31 | border-color: #8ba289; |
32 | } |
33 | |
34 | -pub { |
35 | color: #aaa |
36 | background-color: #2d2c2c |
37 | border: 0 |
38 | margin-top: 0 |
39 | padding: 10px |
40 | transition: background-color 0.25s ease, color 0.25s ease |
41 | |
42 | :hover { |
43 | color: white |
44 | background-color: #45b754 |
45 | } |
46 | } |
47 | |
48 | -save { |
49 | ::before { |
50 | content: '✔ ' |
51 | } |
52 | |
53 | :hover { |
54 | background-color: #45b754; |
55 | color: white; |
56 | } |
57 | } |
58 | |
59 | -full { |
60 | display: block |
61 | width: 100% |
62 | margin: 0 0 15px |
63 | } |
64 | |
65 | -cancel { |
66 | background: transparent |
67 | } |
68 | } |
69 |
Built with git-ssb-web