Advertisement
Guest User

Untitled

a guest
Dec 31st, 2014
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.20 KB | None | 0 0
  1. header {
  2.     background: url("bg1.png");
  3. }
  4.  
  5. header #container{
  6.     background-color: rgba(17, 84, 235, 0.72);
  7.     height: 325px;
  8. }
  9.  
  10. header .logo {
  11.     display: inline-block;
  12.     margin-left: 30px;
  13.     margin-top: 10px;
  14. }
  15.  
  16. #nav {
  17.     float: right;
  18.     margin-top: 20px;
  19.     margin-right: 20px;
  20.     font-family: 'Slabo 27px', serif;
  21. }
  22.  
  23. #nav a{
  24.     display:inline-table;
  25.     font-weight: 700;
  26.     font-size: 19px;
  27.     color: white;
  28.     letter-spacing: 2px;
  29.     padding-left: 23px;
  30. }
  31.  
  32. #nav a:hover {
  33.     color: rgba(255, 255, 255, 0.77);
  34. }
  35.  
  36. header h1{
  37.     font-weight: 700;
  38.     font-size: 70px;
  39.     color: white;
  40.     letter-spacing: 1.2px;
  41.     text-align: center;
  42.     padding-top: 0px;
  43.     font-family: 'Slabo 27px', serif;
  44. }
  45.  
  46. header h1 span{
  47.     display: inline-block;
  48.     padding: 23px 23px 23px 23px;
  49.     border: white solid 10px;
  50.     margin-bottom: 10px;
  51. }
  52.  
  53. header p{
  54.     text-align: center;
  55.     font-weight: 700;
  56.     font-size: 19px;
  57.     color: white;
  58.     font-family: 'Slabo 27px', serif;
  59. }
  60.  
  61. #article{
  62.     height: 1020px;
  63.     background: url("background.png");
  64. }
  65.  
  66. #article #content{
  67.     height: 1020px;
  68.     background-color: rgba(17, 84, 235, 0.72);
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement