| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- /* FONTS */
- @font-face{
- font-family:'raleway';
- src: url('../fonts/Raleway-Thin.otf');
- -webkit-font-smoothing: antialiased;
- }
- @font-face{
- font-family:'openSans-light';
- src: url('../fonts/OpenSans-Light.ttf');
- -webkit-font-smoothing: antialiased;
- }
- @font-face{
- font-family:'openSans-regular';
- src: url('../fonts/OpenSans-Regular.ttf');
- -webkit-font-smoothing: antialiased;
- }
- @font-face{
- font-family:'openSans-bold';
- src: url('../fonts/OpenSans-Bold.ttf');
- -webkit-font-smoothing: antialiased;
- }
- html, body{
- font-family:'openSans-regular';
- font-size: 16px;
- text-align: justify;
- margin: 0;
- padding: 0;
- height: 100%;
- }
- /* NAV */
- .home{
- width: 100%;
- height: 80%;
- background-size: cover;
- background-image: url('../images/home.jpg');
- margin-left: 0;
- margin-top:0;
- font-family:'openSans-light';
- -webkit-text-stroke: 0.3px;
- }
- .navbar{
- margin: 0;
- background-color: white;
- width: 100%;
- height: 50px;
- text-align: right;
- -webkit-box-shadow: 0 2px 10px 8px rgba(0,0,0,0.2);
- box-shadow: 0 2px 10px 8px rgba(0,0,0,0.2);
- }
- .navlist{
- padding-top: 9px;
- font-size: 16px;
- margin:0;
- list-style-type: none;
- vertical-align: middle;
- }
- .navlist a{
- text-decoration: none;
- text-transform: uppercase;
- color: #6E7679;
- }
- .navlist li{
- vertical-align: middle;
- display : inline;
- margin: 0 30px;
- }
- /* HOME */
- #logo{
- width: 100%;
- margin: 5% auto;
- text-align: center;
- }
- /* SECCION */
- .seccion{
- width: 100%;
- }
- .content{
- width: 80%;
- margin: 0 auto;
- padding: 40px 0;
- }
- /* SECCIONES*/
- #us{
- background-color: #6E7679;
- color: #F8F1E9;
- height: 700px;
- background-image: url('../images/shitti.png');
- background-repeat: no-repeat;
- background-position: center bottom;
- }
- .left{
- float: left;
- width: 40%;
- margin: 0 auto;
- }
- .rigth{
- float: right;
- width: 40%;
- margin: 0 auto;
- }
- #tati{
- background-color: #F7C9B8;
- }
- #deiv{
- background-color: #BBD2F4;
- }
- #whatdowedo{
- background-color: #8D7966;
- color: #F8F1E9;
- }
- /* ANIMACIONES */
- .coffee-deiv{
- width: 100px;
- height: 100px;
- background-image: url('../images/deivcup.png');
- background-repeat: no-repeat;
- background-position: center center;
- position: relative;
- top: 66%;
- display: none;
- }
- .slidein-right{
- display: block;
- left: 50%;
- animation: slidein-right 2s;
- -webkit-animation: slidein-right 2s;
- }
- @-webkit-keyframes slidein-right {
- from {right: 10%;}
- to {right: 40%;}
- }
- @keyframes slidein-right {
- from {left: 80%;}
- to {left: 50%;}
- }
- .coffee-tati{
- width: 100px;
- height: 100px;
- background-image: url('../images/taticup.png');
- background-repeat: no-repeat;
- background-position: center center;
- position: relative;
- top: 80%;
- display:none;
- }
- @-webkit-keyframes slidein-left {
- from {left: 10%;}
- to {left: 40%;}
- }
- @keyframes slidein-left {
- from {left: 10%;}
- to {left: 40%;}
- }
- .slidein-left{
- display: block;
- left: 40%;
- animation: slidein-left 2s;
- -webkit-animation: slidein-left 2s;
- }
- /* HEADERS */
- h1{
- font-family: 'openSans-bold';
- text-transform: uppercase;
- text-align: left;
- border-bottom: 1px solid white;
- text-decoration: none;
- font-size: 30px;
- padding: 0px;
- }
|