| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /**
- * Stylesheet
- *
- * @namespace Lungo.Widgets
- * @class Button
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- .button, button
- display: inline-block
- border: none
- cursor: pointer
- font-family: inherit
- font-weight: inherit
- text-align: center
- text-decoration: none
- outline: none
- background: none
- font-size: inherit
- header &
- & > abbr
- font-size: FONT_SIZE_SMALL
- & .icon + abbr
- position: relative
- left: 0.3em
- top: 0.5em
- float: right
- article &
- line-height: 2.5em
- &.icon
- padding: 0 0.65em
- &:not(.icon)
- padding: 0 1em
- & .icon + abbr
- margin-left: 0.5em
- &.large
- font-size: FONT_SIZE_LARGE
- &.small
- font-size: FONT_SIZE_SMALL
- line-height: 2.25em
- &.tiny
- font-size: FONT_SIZE_TINY
- line-height: 2.0em
- padding: 0 0.6em
- &.anchor
- width: 100%
- position: relative
- padding: 0
- &:not(.icon) .icon
- position: absolute
- left: 1.0em
|