Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.95 KB | None | 0 0
  1.             html,body{
  2.                 background: url('background.jpg');
  3.                 background-repeat: repeat;
  4.                 font-family: Arial, Verdana, sans-serif;
  5.                 padding-bottom: 15px;
  6.                 padding-top: 15px;
  7.                
  8.             }
  9.             .container{
  10.                 max-width: 800px;
  11.                 margin: 0 auto;
  12.                 text-align: center;
  13.                 background: white;
  14.                 padding: 1em;
  15.             }
  16.  
  17.  
  18.             .foo{
  19.                 background: gray;
  20.                 width: 80%;
  21.                 color: black;
  22.             }
  23.  
  24.             .article{
  25.                 background: #cccccc;
  26.                 width: 600px;
  27.                 color: black;
  28.                 text-align: left;
  29.                 padding: 10px;
  30.  
  31.             }
  32.            
  33.             p{
  34.                 line-height: 1.5;
  35.             }
  36.            
  37.             .heading{
  38.                 color: gray;
  39.                 font-family: 'Courier New', sans-serif;
  40.             }
  41.             .posted{
  42.                 color: gray;
  43.                 font-size: .75em;
  44.             }
  45.  
  46.             .img{
  47.                 float: left;
  48.                 width: 20%;
  49.             }
  50.            
  51.            
  52.             .img img{
  53.                 border: 3px solid #7b7bff;
  54.                 width: 100;
  55.                 height: 100;
  56.             }
  57.  
  58.             .info{
  59.                 float: right;
  60.                 width: 55%;
  61.             }
  62.  
  63.             .clear{
  64.                 clear: both;
  65.             }
  66.            
  67.             .footer{
  68.                 padding: 1em;
  69.             }
  70.            
  71.             .footer p{
  72.                 color: dimgrey;
  73.                 font-size: small;
  74.             }
  75.            
  76.             a{
  77.                 color: red;
  78.                 text-decoration: none;
  79.                 font-weight: 500;
  80.                
  81.             }
  82.            
  83.             a: visited{
  84.                 color: magenta;
  85.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement