JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
clean up tool button handling and appearance
[crayon_mockup.git] / styl.styl
1 .crayon_mockup
2         svg
3                 border: 1px dotted #aaa
4         svg path
5                 fill: none
6                 stroke: #8c8c8c
7                 stroke-width: 2
8                 stroke-linecap: butt
9                 stroke-linejoin: round
10                 stroke-miterlimit: 4
11                 stroke-opacity: 1
12                 stroke-dasharray: none
13         .button
14                 display: inline-block
15                 border-radius: 4px
16                 background: white
17                 box-shadow: 1px 1px 4px rgba(0,0,0,0.5)
18                 padding: 1px 2px
19                 cursor: pointer
20                 &:hover
21                         background-color: #f9f9f9
22         .button.disabled
23                 color: #777
24                 background-color: #f3f3f3
25                 cursor: default
26         .button + .button
27                 margin-left: 14px
28
29         .toolbar, .tool_options
30                 padding-bottom: 5px