Lungo.layout.list.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. }
  15. .list li.arrow::after {
  16. position: absolute;
  17. right: 8px;
  18. top: 40%;
  19. width: 6px;
  20. height: 6px;
  21. content: '';
  22. border-right: 3px solid #D0D0D8;
  23. border-top: 3px solid #D0D0D8;
  24. -webkit-transform: rotate(45deg);
  25. -moz-transform: rotate(45deg);
  26. -ms-transform: rotate(45deg);
  27. -o-transform: rotate(45deg);
  28. transform: rotate(45deg);
  29. }
  30. .list li a {
  31. display: block;
  32. }
  33. .list li .icon,
  34. .list li img {
  35. float: left;
  36. width: 32px;
  37. height: 32px;
  38. margin-right: 8px;
  39. font-size: 2.6em;
  40. line-height: 1.0em;
  41. text-align: center;
  42. }
  43. .list li.thumb img,
  44. .list li.thumb .icon {
  45. margin: -8px 8px -8px -8px;
  46. height: 46px !important;
  47. width: 46px !important;
  48. font-size: 3.6em;
  49. }
  50. .list li.anchor {
  51. font-size: 0.85em;
  52. font-weight: bold;
  53. padding: 2px 10px;
  54. }
  55. .list li.anchor .icon.small {
  56. margin-right: 2px;
  57. }
  58. .list li.anchor .bubble {
  59. display: none;
  60. }
  61. .list li strong {
  62. font-size: 1.15em;
  63. }
  64. .list li small {
  65. display: block;
  66. overflow: hidden;
  67. white-space: nowrap;
  68. text-overflow: ellipsis;
  69. font-size: 0.8em;
  70. }
  71. .list .bubble {
  72. padding-left: 4px;
  73. padding-right: 4px;
  74. }
  75. .list .right {
  76. font-size: 0.75em;
  77. font-weight: bold;
  78. }
  79. .list .loading .right {
  80. font-size: 1.0em;
  81. }
  82. .list .right .icon,
  83. .list small .icon {
  84. height: 13px !important;
  85. width: 13px !important;
  86. margin-right: 1px !important;
  87. font-size: 1.2em !important;
  88. line-height: 0.8em;
  89. }