Advertisement
Guest User

Untitled

a guest
Sep 14th, 2018
1,293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.43 KB | None | 0 0
  1. @charset "utf-8";
  2. /*
  3.    New Perspectives on HTML5 and CSS3, 7th Edition
  4.    Tutorial 2
  5.    Case Problem 2
  6.    
  7.    Bike the Mountains Tour Style Sheet
  8.    Author: Michael Cox
  9.    Date: 9/13/18
  10.    
  11.    Filename: mw_styles.css
  12. */
  13.  
  14.  
  15. /* Structural Styles */
  16. html {
  17. background-color: rgb(173,189,227);
  18. }
  19.  
  20. /*Body Styles */
  21.  
  22. body {
  23.     margin: 0 auto;
  24.     width: 100%;
  25.     max-width: 1020px;
  26.     min-width: 640px;
  27.   background-color: rgb(227, 210, 173);
  28.   font-family: 'Century Gothic', sans-serif;
  29. }
  30.  
  31.  
  32. /* Heading Styles */
  33. h1, h2 {
  34.   font-weight: normal;
  35. }
  36.  
  37. /* Navigation Styles */
  38. nav > ul {
  39.   list-Style-type: none;
  40.   line-height: 2em;
  41.   font-size 0.9em;
  42. }
  43.  
  44. {
  45.  
  46. nav > ul > li > a:link, nav > ul > li > a:visited {
  47.    color: rgb(43, 59, 125);
  48.   line-height: 2em;
  49.    text-decoration: none;
  50. }
  51.  
  52. nav > ul > li > a:hover, nav > ul > li > a:active {
  53.    color: rgb(212, 35, 35);
  54.     text-decoration: underline;
  55. }
  56.  
  57. /* Address Styles */
  58. body{
  59.   font-family: 'Times New Roman', Times, serif;
  60.   font-size: 0.9em;
  61.   text-align: center;
  62.   padding: 10px;
  63. }
  64.  
  65.  
  66. /* Article Styles */
  67.  section class="tour_summary"
  68.  
  69. h1 { front-size: 2.2em;
  70.   spacing: 0.2em;
  71.  
  72. }
  73. p{ front-size: 1.1em
  74.  
  75. }
  76. p:first-of-type;
  77. p:first-line;{
  78.   front-size: 1.2em;
  79.   font-variant: small-caps;
  80. }
  81. </section>
  82.  
  83. /* Aside Styles */
  84.  
  85.  
  86.  
  87. /* Blockquote Styles */
  88.  
  89. /* Footer Styles*/
  90. body > footer { background-color: rgb(208,184,109);
  91.   padding: 5px;
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement