Mercurial > hg > isophonics-drupal-site
annotate themes/isobartik/css/components/buttons.css @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | e11175134f4e |
children |
rev | line source |
---|---|
Chris@3 | 1 /** |
Chris@3 | 2 * @file |
Chris@3 | 3 * Styles for Bartik's buttons. |
Chris@3 | 4 */ |
Chris@3 | 5 |
Chris@3 | 6 .button { |
Chris@3 | 7 background-color: #fff; |
Chris@3 | 8 background-image: -webkit-linear-gradient(top, #f3f3f3, #e8e8e8); |
Chris@3 | 9 background-image: linear-gradient(to bottom, #f3f3f3, #e8e8e8); |
Chris@3 | 10 border: 1px solid #e4e4e4; |
Chris@3 | 11 border-bottom-color: #b4b4b4; |
Chris@3 | 12 border-left-color: #d2d2d2; |
Chris@3 | 13 border-right-color: #d2d2d2; |
Chris@3 | 14 color: #3a3a3a; |
Chris@3 | 15 cursor: pointer; |
Chris@3 | 16 font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif; |
Chris@3 | 17 font-size: 0.929em; |
Chris@3 | 18 font-weight: normal; |
Chris@3 | 19 text-align: center; |
Chris@3 | 20 padding: 0.250em 1.063em; |
Chris@3 | 21 border-radius: 1em; |
Chris@3 | 22 display: inline-block; |
Chris@3 | 23 line-height: normal; |
Chris@3 | 24 } |
Chris@3 | 25 .button:hover, |
Chris@3 | 26 .button:active, |
Chris@3 | 27 .button:focus { |
Chris@3 | 28 background: #dedede; |
Chris@3 | 29 color: #5a5a5a; |
Chris@3 | 30 text-decoration: none; |
Chris@3 | 31 } |
Chris@3 | 32 .button.is-disabled:hover, |
Chris@3 | 33 .button.is-disabled:active, |
Chris@3 | 34 .button.is-disabled:focus, |
Chris@3 | 35 .button.is-disabled { |
Chris@3 | 36 background: #ededed; |
Chris@3 | 37 border-color: #bbb; |
Chris@3 | 38 color: #717171; |
Chris@3 | 39 cursor: default; |
Chris@3 | 40 } |