| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /**
- * Stylesheet
- *
- * @namespace LUNGO
- * @class Widgets
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- @import "mixins.less";
- /* @group scroll */
- .scrollable {
- position: absolute;
- display: block;
- width: 100%;
- height: 100%;
-
- }
- .scroll {
- overflow: scroll;
- -webkit-overflow-scrolling: touch;
- }
- .scroll .vertical {
-
- }
- /* @end */
- /* @group .position */
- .onleft { float: left; }
- .onright { float: right;}
-
- .indented {
- width: auto;
- height: auto;
- padding: 10px 10px 0px;
- }
- .indented ul {
- margin-bottom: 10px;
- height: auto;
- width: inherit;
-
- }
- .rounded ul { .border-radius(4px); }
- .rounded li:first-child { .border-radius(4px 4px 0px 0px); }
- .rounded li:last-child { .border-radius(0px 0px 4px 4px); }
- .margin-top-4{ margin-top: 4px; }
- /* @end */
- /* @group .visibility */
- .hidden { display: none; }
- .semi-opacity{ opacity: 0.5; }
- /* @end */
- /* @group .sizing */
- .size32 {
- font-size: 32px;
- height: 32px;
- width: 32px;
- line-height: 32px;
- }
- .mini {
- font-size: 20px !important;
- height: 16px !important;
- width: 16px !important;
- line-height: 16px !important;
- }
- /* @end */
- .framed { border: 2px solid #fff;}
- .round { .border-radius(4px); }
- /* @end */
- .bubble {
- padding: 2px 4px 3px;
- .border-radius(2px);
- font-size: 0.8em;
- font-weight: bold;
- line-height: 1.0em;
- }
|