| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * Stylesheet
- *
- * @namespace LUNGO.Widgets
- * @class Button
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- @import "constants.less";
- @import "mixins.less";
- a.button {
- display: inline-block;
- height: 40px;
- padding: 0 8px;
- color: #fff !important;
- background: #5a5a5a;
-
- font-size: 16px;
- text-align: center;
- text-decoration: none;
- line-height: 42px;
-
- outline: none;
- .user-select(none);
- &:active, &.active {
- background: #4b4b4b;
- }
- &:disabled, &.disabled {
- background: rgba(255,255,255,0.2);
- color: #999 !important;
- }
- & .icon {
- position: relative;
- top: 3px;
- height: 16px;
- width: 16px;
- font-size: 22px;
- line-height: 17px;
- }
- & img {
- top: 0px !important;
- }
- &.big {
- width: 100%;
- padding: 0px;
- margin-bottom: 4px;
- & .icon {
- margin: 8px -18px 0 12px;
- float: left;
- font-size: 24px;
- height: 18px;
- width: 18px;
- }
- }
- }
|