Lungo.layout.list.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo.Layout
  5. * @class List
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. /* DIMENSIONS */
  10. /* COLORS */
  11. .list li {
  12. list-style-type: none;
  13. padding: 8px;
  14. position: relative;
  15. /*
  16. position: relative;
  17. */
  18. }
  19. .list li.arrow::after {
  20. position: absolute;
  21. right: 8px;
  22. top: 40%;
  23. width: 6px;
  24. height: 6px;
  25. content: '';
  26. border-right: 3px solid #D0D0D8;
  27. border-top: 3px solid #D0D0D8;
  28. -webkit-transform: rotate(45deg);
  29. -moz-transform: rotate(45deg);
  30. -ms-transform: rotate(45deg);
  31. -o-transform: rotate(45deg);
  32. transform: rotate(45deg);
  33. -webkit-transform: rotate(45deg);
  34. -moz-transform: rotate(45deg);
  35. -ms-transform: rotate(45deg);
  36. -o-transform: rotate(45deg);
  37. transform: rotate(45deg);
  38. }
  39. .list li a {
  40. display: block;
  41. }
  42. .list li .icon,
  43. .list li img {
  44. float: left;
  45. width: 32px;
  46. height: 32px;
  47. margin-right: 8px;
  48. font-size: 2.6em;
  49. line-height: 1.0em;
  50. text-align: center;
  51. }
  52. .list li.thumb img,
  53. .list li.thumb .icon {
  54. margin: -8px 8px -8px -8px;
  55. height: 46px !important;
  56. width: 46px !important;
  57. font-size: 3.6em;
  58. }
  59. .list li.anchor {
  60. font-size: 0.85em;
  61. font-weight: bold;
  62. padding: 2px 10px;
  63. }
  64. .list li.anchor .icon.small {
  65. margin-right: 2px;
  66. }
  67. .list li.anchor .bubble {
  68. display: none;
  69. }
  70. .list .bubble {
  71. padding-left: 5px;
  72. padding-right: 5px;
  73. }
  74. .list .right {
  75. font-size: 0.75em;
  76. font-weight: bold;
  77. }
  78. .list .right .icon,
  79. .list small .icon {
  80. height: 13px !important;
  81. width: 13px !important;
  82. margin-right: 1px !important;
  83. font-size: 1.2em !important;
  84. line-height: 0.8em;
  85. }