home.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /* FONTS */
  2. @font-face{
  3. font-family:'raleway';
  4. src: url('../fonts/Raleway-Thin.otf');
  5. -webkit-font-smoothing: antialiased;
  6. }
  7. @font-face{
  8. font-family:'openSans-light';
  9. src: url('../fonts/OpenSans-Light.ttf');
  10. -webkit-font-smoothing: antialiased;
  11. }
  12. @font-face{
  13. font-family:'openSans-regular';
  14. src: url('../fonts/OpenSans-Regular.ttf');
  15. -webkit-font-smoothing: antialiased;
  16. }
  17. @font-face{
  18. font-family:'openSans-bold';
  19. src: url('../fonts/OpenSans-Bold.ttf');
  20. -webkit-font-smoothing: antialiased;
  21. }
  22. html, body{
  23. font-family:'openSans-regular';
  24. font-size: 20px;
  25. margin: 0;
  26. padding: 0;
  27. height: 100%;
  28. }
  29. /* NAV */
  30. .home{
  31. width: 100%;
  32. height: 80%;
  33. background-size: cover;
  34. background-image: url('../images/home.jpg');
  35. margin-left: 0;
  36. margin-top:0;
  37. font-family:'raleway';
  38. -webkit-text-stroke: 0.3px;
  39. }
  40. .navbar{
  41. margin: 0;
  42. background-color: white;
  43. width: 100%;
  44. height: 50px;
  45. text-align: right;
  46. -webkit-box-shadow: 0 2px 10px 8px rgba(0,0,0,0.2);
  47. box-shadow: 0 2px 10px 8px rgba(0,0,0,0.2);
  48. }
  49. .navlist{
  50. padding-top: 9px;
  51. font-size: 22px;
  52. margin:0;
  53. list-style-type: none;
  54. vertical-align: middle;
  55. }
  56. .navlist a{
  57. text-decoration: none;
  58. text-transform: uppercase;
  59. color: #6E7679;
  60. }
  61. .navlist li{
  62. vertical-align: middle;
  63. display : inline;
  64. margin: 0 10px;
  65. }
  66. /* HOME */
  67. #logo{
  68. width: 100%;
  69. margin: 5% auto;
  70. text-align: center;
  71. }
  72. /* SECCION */
  73. .seccion{
  74. width: 100%;
  75. }
  76. .content{
  77. width: 80%;
  78. margin: 0 auto;
  79. padding: 40px 0;
  80. }
  81. /* SECCIONES*/
  82. #us{
  83. background-color: #A8A39D;
  84. color: #F8F1E9;
  85. height: 700px;
  86. background-image: url('../images/shitti.png');
  87. background-repeat: no-repeat;
  88. background-position: center bottom;
  89. }
  90. .left{
  91. float: left;
  92. width: 40%;
  93. margin: 0 auto;
  94. }
  95. .rigth{
  96. float: right;
  97. width: 40%;
  98. margin: 0 auto;
  99. }
  100. #tati{
  101. background-color: #F7C9B8;
  102. }
  103. #deiv{
  104. background-color: #BBD2F4;
  105. }
  106. #whatdowedo{
  107. background-color: #8D7966;
  108. color: #F8F1E9;
  109. }
  110. /* ANIMACIONES */
  111. .coffee-deiv{
  112. width: 100px;
  113. height: 100px;
  114. background-image: url('../images/deivcup.png');
  115. background-repeat: no-repeat;
  116. background-position: center center;
  117. position: relative;
  118. -webkit-animation: slidein-right 2s;
  119. animation-name: slidein-right ;
  120. animation-duration: 2s;
  121. top: 66%;
  122. left: 50%;
  123. }
  124. @-webkit-keyframes slidein-right {
  125. from {right: 10%;}
  126. to {right: 40%;}
  127. }
  128. @keyframes slidein-right {
  129. from {left: 80%;}
  130. to {left: 50%;}
  131. }
  132. .coffee-tati{
  133. width: 100px;
  134. height: 100px;
  135. background-image: url('../images/taticup.png');
  136. background-repeat: no-repeat;
  137. background-position: center center;
  138. position: relative;
  139. -webkit-animation: slidein-left 2s;
  140. animation-name: slidein-left ;
  141. animation-duration: 2s;
  142. top: 80%;
  143. left: 40%;
  144. }
  145. @-webkit-keyframes slidein-left {
  146. from {left: 10%;}
  147. to {left: 40%;}
  148. }
  149. @keyframes slidein-left {
  150. from {left: 10%;}
  151. to {left: 40%;}
  152. }
  153. /* HEADERS */
  154. h1{
  155. font-family: 'openSans-bold';
  156. text-transform: uppercase;
  157. text-align: left;
  158. border-bottom: 1px solid white;
  159. text-decoration: none;
  160. font-size: 40px;
  161. padding: 20px;
  162. }