Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. h2 {
  2. font-size: 45px;
  3. }
  4.  
  5. .container {
  6. margin: auto;
  7. max-width: 1200px;
  8. padding-left: 20px;
  9. padding-right: 20px;
  10. position: relative;
  11. }
  12. .container__small {
  13. margin: auto;
  14. max-width: 800px;
  15. padding-left: 20px;
  16. padding-right: 20px;
  17. position: relative;
  18. }
  19.  
  20. section {
  21. width: 100%;
  22. display: table;
  23. margin: 0;
  24. max-width: none;
  25. }
  26.  
  27. .spacing {
  28. padding-top: 60px;
  29. padding-bottom: 60px;
  30. }
  31. /*Section intro*/
  32.  
  33. .intro {
  34. float: left;
  35. text-align: center;
  36. height:100vh;
  37. width: 100%;
  38. color: white;
  39. overflow: hidden;
  40. background-image: url('../img/bg.jpg');
  41. background-size: cover;
  42. background-color: black;
  43. -webkit-animation-duration: 3s;
  44.  
  45. }
  46. .bottle {
  47. -webkit-animation-delay: 0.5s;
  48. -webkit-animation-duration: 3s;
  49. }
  50. .bottle img {
  51. max-height: 55vh;
  52. max-width: 100%;
  53. position: relative;
  54. }
  55. header {
  56. width: 100%;
  57. position: relative;
  58. }
  59. nav a {
  60. color: white;
  61. text-decoration: none;
  62. padding-left: 20px;
  63. font-family: 'bignoodletitlingregular';
  64. font-size: 24px;
  65. letter-spacing: 3px;
  66. color: #c2a572;
  67. }
  68. .logo {
  69. width: 15%;
  70. position: relative;
  71. margin-top: 30px;
  72. }
  73. .logo img {
  74. width: 100%;
  75. }
  76. .menu {
  77. position: absolute;
  78. right: 0px;
  79. top: 30px;
  80. }
  81.  
  82. .history {
  83. background-color: black;
  84. }
  85.  
  86. #history p {
  87. color: #CCC;
  88. }
  89. #history h2 {
  90. color: white;
  91. }
  92. .phone {
  93. color: black;
  94. text-decoration: none;
  95. margin-top: 0px;
  96. display: table;
  97. }
  98. .phone strong {
  99. display: table-cell;
  100. vertical-align: middle;
  101. font-size: 20px;
  102. text-indent: 20px;
  103. }
  104. .phone i {
  105. margin-right: 20px;
  106. display: table-cell;
  107. vertical-align: middle;
  108. }
  109.  
  110. /*Section contact*/
  111. .contact {
  112. background-image: url('../img/ricepaper2.jpg');
  113. float: left;
  114. width: 100%;
  115. }
  116. .form-group input, textarea {
  117. width: 95%;
  118. display: block;
  119. border-top: none;
  120. border-left: none;
  121. border-right:none;
  122. border-bottom: 3px solid black;
  123. padding: 10px;
  124. background: none;
  125. margin-bottom: 20px;
  126. border-radius: 0px;
  127. }
  128. .form-group input:focus, textarea:focus {
  129. outline:none;
  130. background-color:rgba(0, 0, 0, 0.1);
  131. -webkit-transition: all 0.30s ease-in-out;
  132. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement