Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
2,340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. @charset "utf-8";
  2.  
  3. /*
  4. New Perspectives on HTML5 and CSS3, 7th Edition
  5. Tutorial 3
  6. Case Problem 1
  7.  
  8. Layout styles for Slate and Pencil Tutoring
  9. Author: Stoy Gates
  10. Date: 9/17/2017
  11.  
  12. Filename: sp_layout.css
  13.  
  14. */
  15.  
  16. /* Window and Body Styles */
  17.  
  18. html {
  19. height: 100%;
  20. }
  21.  
  22. body {
  23. width: 95%;
  24. max-width: 960px;
  25. min-width: 640px;
  26. margin: 0 auto;
  27. min-height: 100%;
  28. }
  29.  
  30. header, ul, nav, li, a {
  31. -webkit-box-sizing: border-box;
  32. -moz-box-sizing: border-box;
  33. box-sizing: border-box;
  34. }
  35.  
  36.  
  37. /* Row Styles */
  38.  
  39. body > row::after {
  40. clear:both;
  41. content: "";
  42. display: table;
  43. }
  44.  
  45.  
  46.  
  47.  
  48. /* Page Header Styles */
  49.  
  50. body > header > img {
  51. display: block;
  52. width: 70%;
  53. float: left;
  54. }
  55.  
  56. nav.vertical li {
  57. width: 30%;
  58. padding-left: 2%;
  59. padding-right: 2%;
  60. float: left;
  61. }
  62.  
  63. header > header > nav {
  64. display: block;
  65. width: 100%;
  66. }
  67.  
  68.  
  69. /* Horizontal Navigation List Styles */
  70.  
  71. nav.horizontal {
  72. display: block;
  73. width: 12.5%;
  74. float: left;
  75. }
  76.  
  77.  
  78.  
  79.  
  80.  
  81. /* Topics Styles */
  82.  
  83. #topics ul {
  84. display: inline-block;
  85. width: 20%;
  86. float: left;
  87. margin-left: 0%;
  88. margin-right: 1.5%;
  89. }
  90.  
  91. #topics li:first-child {
  92. margin-left: 7.75%;
  93. }
  94.  
  95. #topics li:last-child {
  96. margin-right: 7.75%;
  97. }
  98.  
  99. #topics img {
  100. display: block;
  101. width: 50%;
  102. margin: auto;
  103. }
  104.  
  105. /* HR Styles */
  106.  
  107. hr {
  108. width: 50%;
  109. }
  110.  
  111.  
  112.  
  113. /* Customer Comment Styles */
  114.  
  115. #comments ul {
  116. width: 75%;
  117. margin-top: 40px;
  118. margin-bottom: 40px;
  119. margin-left: auto;
  120. margin-right: auto;
  121. }
  122.  
  123. #comments li {
  124. display: block;
  125. width: 50%;
  126. float: left;
  127. margin-bottom: 30px;
  128. }
  129.  
  130. #comments img {
  131. display: block;
  132. width: 20%;
  133. float: left;
  134. margin-right: 5%;
  135. margin-left: 5%;
  136. }
  137.  
  138. #comments p {
  139. float: left;
  140. width: 70%;
  141. }
  142. /* Footer Styles */
  143.  
  144. footer{
  145. clear:both;
  146. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement