| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /**
- * Stylesheet
- *
- * @namespace LUNGO.Layout
- * @class List
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- @import "constants.less";
- @import "mixins.less";
- .list {
- & li {
- list-style-type: none;
- &.padding {
- padding: 8px;
- }
- & a {
- position: relative;
- display: block;
- padding: 8px;
- }
- &.arrow > a::after{
- content: '';
- display: block;
- width: 6px;
- height: 6px;
- border-right: 3px solid #D0D0D8;
- border-top: 3px solid #D0D0D8;
- position: absolute;
- right: 12px;
- top: 43%;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- transform: rotate(45deg);
- }
- & .icon, & img {
- float: left;
- width: 32px;
- height: 32px;
- margin-right: 8px;
- font-size: 2.6em;
- line-height: 1.0em;
- text-align: center;
- }
- &.thumb img {
- margin: -8px 8px -8px -8px;
- height: 46px;
- width:46px;
- }
- }
- & .bubble {
- padding-left: 5px;
- padding-right: 5px;
- }
- & .onright {
- font-size: 0.75em;
- font-weight: bold;
- }
- & .onright .icon, & small .icon {
- height: 13px;
- width: auto;
- margin-right: 1px;
- font-size: 1.2em;
- line-height: 0.8em;
- }
- //@todo: Refactor li.anchor stylesheet;
- & li.anchor {
- font-size: 0.85em;
- padding: 4px 4px 3px;
- & .icon {
- width: 14px !important;
- height: 14px !important;
- margin-right: 2px !important;
- font-size: 1.6em !important;
- line-height: 14px !important;
- }
- & .bubble { display: none; }
- }
- & .tip {
- font-size: 0.85em;
- font-weight: bold;
- }
- }
|