git ssb

16+

Dominic / patchbay



Tree: d20a4c3eb8a4eb7a37398d3d135e5806aeb5aaf7

Files: d20a4c3eb8a4eb7a37398d3d135e5806aeb5aaf7 / app / styles / mcss / button.mcss

1027 bytesRaw
1button {
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: all .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: teal
34 border: 1px solid teal
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 $colorPrimary
52 $borderPrimary
53
54 :hover {
55 opacity: .9
56 }
57 }
58
59 -showMore {
60 width: 100%
61
62 padding: .2rem 0
63
64 border-left: none
65 border-right: none
66 border-bottom: none
67 }
68}
69
70

Built with git-ssb-web