Files: 6933df2077762d016ea868964eccc4a173a2dd0e / styles / light / toggle-button.mcss
970 bytesRaw
1 | ToggleButton { |
2 | font-size: 90%; |
3 | background: rgb(112, 112, 112); |
4 | border: 2px solid #313131; |
5 | transition: opacity 0.2s; |
6 | opacity: 0.6; |
7 | padding: 6px 12px; |
8 | color: white; |
9 | border-radius: 4px; |
10 | font-weight: bold; |
11 | text-decoration: none; |
12 | display: block; |
13 | |
14 | -subscribe { |
15 | background-color: rgb(88, 171, 204); |
16 | border-color: #20699c; |
17 | } |
18 | |
19 | -unsubscribe { |
20 | background-repeat: no-repeat |
21 | background-position: right |
22 | background-image: svg(subscribed) |
23 | padding-right: 25px |
24 | } |
25 | |
26 | -blocking { |
27 | margin-top: 5px |
28 | } |
29 | |
30 | -unblocking { |
31 | margin-top: 5px |
32 | background-color: #deb250 |
33 | border-color: #ad7904 |
34 | } |
35 | |
36 | -disabled { |
37 | cursor: default |
38 | opacity: 0.4 !important |
39 | text-decoration: none !important |
40 | } |
41 | |
42 | :hover { |
43 | opacity: 1 |
44 | text-decoration: none |
45 | } |
46 | |
47 | @svg subscribed { |
48 | width: 20px |
49 | height: 12px |
50 | content: "<circle cx='6' stroke='#FFF' fill='none' cy='6' r='5' /> <circle cx='6' cy='6' r='3' fill='#FFF'/>" |
51 | } |
52 | } |
53 |
Built with git-ssb-web