Guest User

Untitled

a guest
Jan 14th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. /**
  2. @group Lists
  3. @zenCss zenList, zenComponents
  4. @brief For listing data vertically or horizontally
  5.  
  6. Some description here.
  7. */
  8.  
  9. /**
  10. @component basicList
  11. @brief Simple list without bullets
  12.  
  13. The basic list has no bullets, a simple vertical list which is often used to group other content.
  14.  
  15. @example
  16. <ul class="basicList">
  17. <li>item 1</li>
  18. <li>item 2</li>
  19. <li>item 3</li>
  20. </ul>
  21. */
  22. .basicList{
  23. margin: 10px 0;
  24. }
  25. .basicList li{
  26. padding: .2em 0;
  27. }
  28.  
  29. /**
  30. @extension basicListSm
  31. @extends basicList
  32.  
  33. Adds 5px margin top and bottom (which will be 5px total due to margin collapse).
  34.  
  35. @example
  36. <ul class="basicList basicListSm">
  37. <li>item 1</li>
  38. <li>item 2</li>
  39. </ul>
  40. */
  41. .basicListSm li{
  42. margin: 5px 0;
  43. }
  44.  
  45. /**
  46. @extension basicListMed
  47. @extends basicList
  48.  
  49. Adds 10px margin top and bottom (which will be 5px total due to margin collapse).
  50.  
  51. @example
  52. <ul class="basicList basicListMed">
  53. <li>item 1</li>
  54. <li>item 2</li>
  55. </ul>
  56. */
  57. .basicListMed li{
  58. margin: 10px 0;
  59. }
  60.  
  61. /**
  62. @extension basicListLg
  63. @extends basicList
  64.  
  65. Adds 20px margin top and bottom (which will be 5px total due to margin collapse).
  66.  
  67. @example
  68. <ul class="basicList basicListLg">
  69. <li>item 1</li>
  70. <li>item 2</li>
  71. </ul>
  72. */
  73. .basicListLg li{
  74. margin: 20px 0;
  75. }
Add Comment
Please, Sign In to add comment