button.styl
1 @import "./colours" 2 3 button 4 width: 100% 5 color:lightGrey 6 background: rgba(22, 22, 22, 1) 7 border:2px solid rgba(222, 222, 222, 0.2) 8 font-weight: lighter 9 font-size: 1em 10 text-transform: lowercase 11 padding:10px 0 12 font-weight:bold 13 14 .primary 15 color:main 16 background:accent2 17 border-color: accent2 18 19 .halfsize 20 width:calc(50% - 2px) 21 height:auto 22 color:contentColour 23 background:accent4 24 border:1px solid accent4 25 padding:0 26 27 .halfsize:first-of-type 28 margin:5px 4px 5px 0 29 30 .halfsize:nth-of-type(2) 31 margin:5px 0 32 33 .halfsize img 34 width:50% 35 height:auto 36 line-height:75px 37 vertical-align:middle