Advertisement
Guest User

Untitled

a guest
Mar 8th, 2022
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.34 KB | None | 0 0
  1. body
  2.     {
  3.         color: #555555;
  4.         background: rgb(144,199,227);
  5.         background: linear-gradient(#90C7E3 0%, #FFFFFF 100%);
  6.         background-repeat: no-repeat;
  7.         font-family: Arial, Helvetica, sans-serif;
  8.     }
  9.  
  10. header
  11.     {
  12.         color: #FFFFFF;
  13.         background-color: #002171;
  14.         background-image: url("images/sunset.jpg");
  15.         background-repeat: no-repeat;
  16.         background-position: right;
  17.         height: 60px;
  18.         text-align: center;
  19.         padding-top: 15px;
  20.     }
  21.  
  22. main
  23.     {
  24.         padding-top: 1px;
  25.         padding-left: 20px;
  26.         padding-right: 20px;
  27.         padding-bottom: 20px;
  28.         display: block;
  29.     }
  30.  
  31. nav
  32.     {
  33.         background-color: #FFFFFF;
  34.         font-weight: bold;
  35.         text-align: center;
  36.         padding: 1em;
  37.     }
  38.  
  39. nav a
  40.     {
  41.         text-decoration: none;
  42.     }
  43.  
  44. h1
  45.     {
  46.         margin-top: 0;
  47.         margin-bottom: 0;
  48.         font-family: Georgia, 'Times New Roman', serif;
  49.     }
  50.  
  51. h2
  52.     {
  53.         color: #1976D2;
  54.         font-family: Georgia, 'Times New Roman', serif;
  55.         text-shadow: 1px 1px #CCCCCC;
  56.     }
  57.  
  58. h3
  59.     {
  60.         color: #000033;
  61.         font-family: Georgia, 'Times New Roman', serif;
  62.     }
  63.  
  64. dt
  65.     {
  66.         color: #002171;
  67.     }
  68.  
  69. ul
  70.     {
  71.         list-style-image: url("images/marker.gif");
  72.     }
  73.  
  74. footer
  75.     {
  76.         font-size: 75%;
  77.         font-style: italic;
  78.         text-align: center;
  79.         font-family: Georgia, 'Times New Roman', serif;
  80.         padding: 2em;
  81.     }
  82.  
  83. .resort
  84.     {
  85.         color: #1976D2;
  86.         font-weight: bold;
  87.     }
  88.  
  89. #contact
  90.     {
  91.         font-size: 90%;
  92.     }
  93.  
  94. #wrapper
  95.     {
  96.         margin-left: auto;
  97.         margin-right: auto;
  98.         width: 80%;
  99.         background-color: #FFFFFF;
  100.         min-width: 960px;
  101.         max-width: 2048px;
  102.         box-shadow: 3px 3px #333333;
  103.     }
  104.  
  105. #homehero
  106.     {
  107.         background-image: url("images/coast.jpg");
  108.         background-size: 100% 100%;
  109.         background-repeat: no-repeat;
  110.     }
  111.  
  112. #yurthero
  113.     {
  114.         background-image: url("images/yurt.jpg");
  115.         background-size: 100% 100%;
  116.         background-repeat: no-repeat;
  117.     }
  118.  
  119. #trailhero
  120.     {
  121.         background-image: url("images/trail.jpg");
  122.         background-size: 100% 100%;
  123.         background-repeat: no-repeat;
  124.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement