Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.37 KB | None | 0 0
  1. body{
  2.     margin: 0;
  3.     background-color: aliceblue;
  4.     font-family: 'Raleway', sans-serif;
  5.     font-weight: 400;
  6. }
  7.  
  8. // Navbar header
  9.  
  10. header{
  11.     width: 100%;
  12.     height: 55px;
  13.     background-color: white;
  14.     display: inline-block;
  15.  
  16.     nav{
  17.        
  18.         #logo{
  19.             float: left;
  20.             margin-left: 10px;
  21.             padding: 5px;
  22.  
  23.             img{
  24.                 width: 70px;
  25.                 height: 45px;
  26.             }
  27.         }
  28.  
  29.         #navigation{
  30.             float: right;    
  31.             padding: 17px;
  32.            
  33.             .nav-element{
  34.                 padding: 22px;
  35.                 color: black;
  36.                 text-decoration: none;
  37.             }
  38.  
  39.             .nav-element:hover{
  40.                 color: #de5810;
  41.                 transition: 0.2s;
  42.             }  
  43.         }
  44.     }
  45. }
  46.  
  47. // Sections
  48.  
  49. .welcomeSection{
  50.     width: 100%;
  51.     position: relative;
  52.     text-align: center;
  53.     height: calc(100vh - 1px);
  54.     background-image: url("/content/background.png");
  55.     background-size: 100%;
  56.     background-repeat: no-repeat;
  57.  
  58.     img{
  59.         margin: 0 auto;
  60.         max-width: 701px; // Width of logo
  61.         width: 100%;
  62.         height: auto;
  63.     }
  64.  
  65.     p{
  66.         font-weight: 300;
  67.         font-size: 60px;
  68.         margin-bottom: 15px;
  69.         margin-top: 0;
  70.         padding-top: 25px;
  71.     }
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement