-Annie-

03.Create-Header(Styles)

Feb 3rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.67 KB | None | 0 0
  1. body {
  2.     font-family: "Lato", sans-serif;
  3.     color: #ffffff;
  4.     padding: 0;
  5.     margin: 0;
  6. }
  7.  
  8. .container {
  9.     text-align: center;
  10.     padding: 0 10px;
  11.     background: url(background-image.jpg) no-repeat center center;
  12.     background-size: cover;
  13.     height: 800px;
  14.     text-align: center;
  15. }
  16.  
  17. h1 {
  18.     font-size: 80px;
  19.     padding: 80px 0;
  20.     letter-spacing: 8px;
  21.     text-transform: uppercase;
  22. }
  23.  
  24. p {
  25.     font-size: 27px;
  26.     font-weight: 100;
  27.     margin: 20px;
  28. }
  29.  
  30. button {
  31.     color: rgb(255, 255, 255);
  32.     background: none;
  33.     border: 5px solid #ffffff;
  34.     border-radius: 15px;
  35.     padding: 15px 45px;
  36.     font-size: 16px;
  37. }
  38.  
  39. button:hover {
  40.     background: #000;
  41.     border-color: #000;
  42.     cursor: pointer;
  43. }
Add Comment
Please, Sign In to add comment