Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Yantramanav:100');
  2. @import url('https://fonts.googleapis.com/css?family=Montserrat:400');
  3.  
  4. html, body {
  5. margin: 0;
  6. padding: 0;
  7. height: 100%;
  8. width: 100%;
  9. }
  10. .intro {
  11. height: 100%;
  12. width: 100%;
  13. margin: auto;
  14. background: url(https://static.pexels.com/photos/307008/pexels-photo-307008.jpeg) no-repeat 50% 50%;
  15. display: table;
  16. top: 0;
  17. background-size: cover;
  18. }
  19. .intro .inner {
  20. display: table-cell;
  21. vertical-align: middle;
  22. width: 100%;
  23. max-width: none;
  24. }
  25. .content {
  26. max-width: 600px;
  27. margin: 0 auto;
  28. text-align: center;
  29. padding-bottom: 18%;
  30. }
  31. .content h1 {
  32. font-family: 'Yantramanav', sans-serif;
  33. font-size: 600%;
  34. font-weight: 100;
  35. color: black;
  36. line-height: 70%;
  37. }
  38. .btn {
  39. font-family: 'Montserrat', sans-serif;
  40. font-size: 135%;
  41. font-weight: 400%;
  42. color: black;
  43. text-transform: uppercase;
  44. text-decoration: none;
  45. border: solid black;
  46. padding: 8px 20px;
  47. border-radius: 9px;
  48. transition: all 0.5s;
  49. }
  50. .btn: {
  51. color: white;
  52. border: solid white 2px;
  53. }
  54. p {
  55. font-size: 130%;
  56. font-height: 100%;
  57. font-family: sans-serif;
  58. }
  59.  
  60.  
  61. @media screen and (max-width: 900px) {
  62.  
  63. }
  64. @media screen and (max-width: 768px) {
  65.  
  66. }
  67. @media screen and (max-width: 480px) {
  68.  
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement