Guest User

Untitled

a guest
Dec 11th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. body { font-family: .... font-size ... color ... }
  2. a { text-decoration: none; }
  3.  
  4. div.content ul.table_of_contents
  5. div.content ul.table_of_contents li
  6. div.content ul.table_of_contents li h1
  7. div.content ul.table_of_contents li h2
  8. div.content ul.table_of_contents li span.pagenumber
  9.  
  10. div.navi ul.menu { display: ...; list-style-type: none; list-style-image: none; }
  11. div.navi ul.menu li { float: left }
  12.  
  13. <ul id="level1" class="menu"><li> ...... </li></ul>
  14. <ul id="level2" class="menu"><li> ...... </li></ul>
  15. <ul id="level3" class="menu"><li> ...... </li></ul>
  16.  
  17. body.contactpage div.container ul.mainmenu li { color: green }
  18.  
  19. <ul class="mainmenu">
  20. <li class="item_first item_active item_1"> First item </li>
  21. <li class="item_2"> Second item </li>
  22. <li class="item_3"> Third item </li>
  23. <li class="item_last item_4"> Fourth item </li>
  24. </ul>
  25.  
  26. reset.css
  27. base.css
  28. somepage.css
  29. someotherpage.css
  30. some_abstract_component.css
  31.  
  32. /* Table of Contents
  33. - - - - - - - - -
  34. Header stuff
  35. Body Stuff
  36. Some other junk
  37. - - - - - - - - -
  38. */
  39. ...
  40. /* Header Stuff
  41. */
  42. ...
  43. /* Body Stuff
  44. */
  45.  
  46. position: absolute; top: 10px; right: 10px;
  47.  
  48. padding: 10px; margin: 20px;
  49. border: 1px solid black;
  50.  
  51. components target
  52. ---------------------------- --------
  53. #answers .answer .userinfo address
  54. -------- --------- --------- --------
  55. domain component component selector
  56.  
  57. #page1 div.title, #page1 ul, #page1 span {
  58. // rules
  59. }
  60.  
  61. #parent{
  62. width: 100%;
  63.  
  64. #child1
  65. {
  66. background: #E1E8F2;
  67. padding: 5px;
  68. }
  69.  
  70. #child2
  71. {
  72. background: #F1F8E2;
  73. padding: 15px
  74. }
  75. }
  76.  
  77. #parent #child1
  78. {
  79. width: 100%;
  80. background: #E1E8F2;
  81. padding: 5px;
  82. }
  83.  
  84. #parent #child2
  85. {
  86. width: 100%;
  87. background: #F1F8E2;
  88. padding: 15px;
  89. }
  90.  
  91. /* Headings and General Text */
  92.  
  93. .... stuff here for H1, etc..
  94.  
  95. /* Main page layout */
  96.  
  97. .... stuff here for layout page setup etc.
  98.  
  99. .page-section {
  100. width: 100%;
  101. }
  102. @media screen and (min-width: 1200px) {
  103. margin: 0 auto;
  104. width: 1200px;
  105. }
  106.  
  107. .header {
  108. .primary-box {
  109. color: #000;
  110. }
  111. }
Add Comment
Please, Sign In to add comment