Files: 1378d45546366e65918f675f73abcb4a7f7ab2d2 / app / styles / mcss / button.mcss
1206 bytesRaw
1 | button { |
2 | font-family: arial |
3 | text-transform: uppercase |
4 | font-weight: bold |
5 | font-size: .7rem |
6 | letter-spacing: 1.4px |
7 | |
8 | color: #666 |
9 | background-color: #fff |
10 | |
11 | min-width: 6rem |
12 | min-height: 1.8rem |
13 | |
14 | padding: .2rem 1rem |
15 | cursor: pointer |
16 | border: 1px #b9b9b9 solid |
17 | outline: none |
18 | |
19 | display: flex |
20 | justify-content: center |
21 | align-items: center |
22 | |
23 | transition: border, color, background .1s ease-in |
24 | |
25 | :focus { |
26 | outline: none |
27 | /* border-color: #0088cc */ |
28 | /* box-shadow: 0 0 4px #0088cc */ |
29 | } |
30 | |
31 | :hover { |
32 | color: #fff |
33 | background-color: #15d6b4 |
34 | border: 1px solid #15d6b4 |
35 | outline: none |
36 | } |
37 | |
38 | -subtle { |
39 | color: #b9b9b9 |
40 | border: 1px solid rgba(0,0,0,0) |
41 | background: none |
42 | |
43 | :hover { |
44 | color: #fff |
45 | background-color: rgba(200,0,0,.5) |
46 | border: 1px solid rgba(200,0,0,.5) |
47 | } |
48 | } |
49 | |
50 | -primary { |
51 | color: #fff |
52 | background-color: #9754de |
53 | border: 1px solid #9754de |
54 | |
55 | :hover { |
56 | background-color: #de54cc |
57 | border: 1px solid #de54cc |
58 | } |
59 | } |
60 | |
61 | -active { |
62 | color: #aa2cda |
63 | border: 1px solid #aa2cda |
64 | } |
65 | |
66 | -showMore { |
67 | width: 100% |
68 | |
69 | padding: .2rem 0 |
70 | |
71 | border-left: none |
72 | border-right: none |
73 | border-bottom: none |
74 | } |
75 | } |
76 | |
77 |
Built with git-ssb-web