Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.79 KB | None | 0 0
  1. article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display:block;}
  2. a:link, a:visited{color:#47FF00; text-decoration:none;}
  3. a:hover {color:#0CE83B; text-decoration:underline;}
  4.  
  5. html{
  6.     color:#fff;
  7.     background-color:#000;
  8.     font:10pt Verdana, Arial, Helvetica;
  9. }
  10. body{
  11.     max-width:1024px;
  12.     margin:auto;
  13.     padding:0;
  14.     border:1px solid;}
  15.    
  16. body > section, body > header, body > footer{width:1024px; margin:auto;}
  17.  
  18. .sub-links {  
  19.      display: none;  
  20.      position: absolute;  
  21.      width: 100%;  
  22.      top: -30px;  
  23.     text-align: left;  
  24.      left: 0px;  
  25.  }
  26.  
  27. body > header{position:relative;  background-color:#332F2E;}
  28. body > header > *:not(img){padding:1em;}
  29. body > header > h1 {font-size:3em; margin:0;padding-top:1em;}
  30. body > header > nav{font-size:1.5em;position:absolute;top:1.75em;right:0;}
  31. body > header > nav > a{display:inline-block; margin:0 0.5em;}
  32. body > header > nav > a:link,
  33. body > header > nav > a:visited{color:#fff;}
  34.  
  35. img.sectionHeader{margin:auto; border:1px solid #fff;}
  36. img.ich {float:right;margin:0.6em;}
  37. #sidebar{
  38.     float:right;
  39.     width:220px;
  40.     height:600px;  
  41.     margin:0 0em 0 5em;
  42.     border:1px solid #fff;
  43.     font-size:0.9em;
  44.    
  45. }
  46. #sidebar > section+section{margin-top:1em;}
  47. #sidebar > section > p{margin-left:1em;font-size:1em;text-align:justify;}
  48.  
  49. body > section > article{margin:auto 2em;}
  50. body > section > article h1{font-size:2em;color:#47FF00;}
  51. body > section > article h2{font-size:1.4em;color:#A000CC;}
  52. body > section > article h3{font-size:1.2em;}
  53. body > section > article p{margin-left:1em;text-align:justify;}
  54. body > section > article + article{margin-top:2em;}
  55.  
  56. body > footer{background-color:#0D0C0D;height:100px;text-align:center;margin-top:4em;padding-top:1em;font-size:10pt;clear:both;}
  57. body > footer p{text-align:center;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement