Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.26 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 4
  7.  
  8.    Park City Gazette Style Sheet
  9.    Author:
  10.    Date:  
  11.  
  12.    Filename:         pcg_paper.css
  13.    Supporting Files:
  14.  
  15. */
  16.  
  17. body {
  18.   background-color: #ededed;
  19.   font-family: arial, sans-serif;
  20. }
  21.  
  22.  
  23. /* Navigation Section */
  24. ul.navbar li{
  25.   display: block;
  26.   float: left;
  27.   padding-right: 8px;
  28.   font-size: 14px;
  29. }
  30.  
  31. ul.navbar li a {
  32.   color: rgb(0,0,0);
  33.   text-decoration: none;
  34.   font-weight: bolder;
  35. }
  36.  
  37. ul.navbar li a:hover {
  38.   color: #878787;
  39. }
  40.  
  41. /* Atricle Sections */
  42. article {
  43.   margin-left: 75px;
  44.   margin-right: 75px;
  45. }
  46.  
  47. article.localwoman p::first-line {
  48.   font-weight: bold;
  49. }
  50.  
  51. /* Article Headings */
  52. article h1, article h2 {
  53.   height: 20px;
  54.   padding-top: 10px;
  55.   font-size: 175%;
  56.   color: #d35400;
  57.   text-align: left;
  58. }
  59.  
  60. article h2 {
  61.   font-size: 125%;
  62. }
  63.  
  64. /* Article Images */
  65. article img {
  66.   float:left;
  67.   padding-right:15px;
  68. }
  69.  
  70. article.hway img {
  71.   margin-bottom: 15px;
  72.   float: left;
  73. }
  74.  
  75. /* Article Paragraphs */
  76.  
  77. article p {
  78.   text-align: justify;
  79. }
  80.  
  81. article p::first-line {
  82.   padding-left: 15px;
  83. }
  84.  
  85. /* Footer */
  86. footer {
  87.   color: #34495e;
  88.   text-align: center;
  89.   font-weight: bold;
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement