├── imagens ├── bg.png ├── logo.png ├── .DS_Store ├── bg-linha.gif ├── bg-rodape.png ├── ornamento.png ├── piscina.jpg ├── apartamento.jpg ├── depoimento.png ├── restaurante.jpg ├── bg-container.png ├── bg-area-lateral.png ├── bg-area-principal.png ├── topo-imagem-lateral.png ├── topo-imagem-principal.png └── topo-imagem-principal2.png ├── css └── style.css └── index.html /imagens/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/bg.png -------------------------------------------------------------------------------- /imagens/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/logo.png -------------------------------------------------------------------------------- /imagens/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/.DS_Store -------------------------------------------------------------------------------- /imagens/bg-linha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/bg-linha.gif -------------------------------------------------------------------------------- /imagens/bg-rodape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/bg-rodape.png -------------------------------------------------------------------------------- /imagens/ornamento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/ornamento.png -------------------------------------------------------------------------------- /imagens/piscina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/piscina.jpg -------------------------------------------------------------------------------- /imagens/apartamento.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/apartamento.jpg -------------------------------------------------------------------------------- /imagens/depoimento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/depoimento.png -------------------------------------------------------------------------------- /imagens/restaurante.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/restaurante.jpg -------------------------------------------------------------------------------- /imagens/bg-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/bg-container.png -------------------------------------------------------------------------------- /imagens/bg-area-lateral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/bg-area-lateral.png -------------------------------------------------------------------------------- /imagens/bg-area-principal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/bg-area-principal.png -------------------------------------------------------------------------------- /imagens/topo-imagem-lateral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/topo-imagem-lateral.png -------------------------------------------------------------------------------- /imagens/topo-imagem-principal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/topo-imagem-principal.png -------------------------------------------------------------------------------- /imagens/topo-imagem-principal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/chale-hotel/master/imagens/topo-imagem-principal2.png -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | /*Estrutura do site*/ 2 | 3 | * { 4 | margin: 0; 5 | padding: 0; 6 | } 7 | 8 | body { 9 | background: #fff url(../imagens/bg.png); 10 | font-family: Helvetica, "Trebuchet MS", sans-serif; 11 | margin: 15px; 12 | } 13 | 14 | #container { 15 | background: #ede9cc url(../imagens/bg-container.png) top center repeat-y; 16 | margin: 0 auto; 17 | min-width: 740px; 18 | max-width: 1180px; 19 | } 20 | 21 | #topo { 22 | position: relative; 23 | background: #dbcd87; 24 | height: 15.4em; 25 | min-height: 250px; 26 | } 27 | 28 | #area-logo { 29 | position: absolute; 30 | top: 0; 31 | left: 0; 32 | background: url(../imagens/topo-imagem-principal.png) no-repeat; 33 | width: 100%; 34 | height: 250px; 35 | z-index: 1; 36 | } 37 | 38 | 39 | .logo a { 40 | position: absolute; 41 | top: 15px; 42 | left: 15px; 43 | z-index: 3; 44 | background: url(../imagens/logo.png) no-repeat; 45 | width: 151px; 46 | height: 66px; 47 | text-indent: -10000px; 48 | } 49 | 50 | #area-menu { 51 | position: absolute; 52 | top: 0; 53 | right: 0; 54 | background: url(../imagens/topo-imagem-lateral.png) no-repeat; 55 | width: 450px; 56 | height: 250px; 57 | z-index: 2; 58 | } 59 | 60 | #conteudo-menu { 61 | margin-left: 90px; 62 | margin-right: 15px; 63 | padding-top: 15px; 64 | } 65 | 66 | #menu-locais { 67 | border-bottom: 1px solid #b5ab56; 68 | border-top: 1px solid #b5ab56; 69 | padding-top: 5px; 70 | padding-bottom: 5px; 71 | font-size: 0.7em; 72 | color: #8b8448; 73 | } 74 | 75 | #menu-locais .locais { 76 | float: left; 77 | line-height: 2.1em; 78 | } 79 | 80 | a { 81 | text-decoration: none; 82 | } 83 | 84 | a.reserva { 85 | text-transform: uppercase; 86 | background: #a29750; 87 | color: #fff5b0; 88 | padding: 5px 10px; 89 | float: right; 90 | } 91 | 92 | /*Barra de navegação vertical*/ 93 | 94 | #menu { 95 | margin-top: 15px; 96 | } 97 | 98 | ul { 99 | list-style: none; 100 | } 101 | 102 | ul#navegacao { 103 | float: left; 104 | } 105 | 106 | ul#navegacao a { 107 | text-transform: uppercase; 108 | font-size: 0.8em; 109 | padding: 5px; 110 | color: #6e672c; 111 | line-height: 30px; 112 | } 113 | 114 | ul#navegacao a:hover { 115 | background: #fdf6be; 116 | } 117 | 118 | .depoimento { 119 | width: 226px; 120 | height: 164px; 121 | float: right; 122 | } 123 | 124 | /*Área de conteúdos*/ 125 | 126 | #area-principal { 127 | float: left; 128 | width: 50%; 129 | background: url(../imagens/bg-area-principal.png) top left repeat-x; 130 | padding: 15px 0; 131 | } 132 | 133 | #area-lateral { 134 | float: right; 135 | width: 50%; 136 | background: url(../imagens/bg-area-lateral.png) top left repeat-x; 137 | padding: 20px 0; 138 | } 139 | 140 | .conteudo { 141 | margin: 0 auto; 142 | width: 90%; 143 | } 144 | 145 | #rodape { 146 | clear: both; 147 | color: #7d7640; 148 | padding: 16px; 149 | background: #fff url(../imagens/bg-rodape.png) repeat-x top; 150 | } 151 | 152 | /*Formatações de texto*/ 153 | 154 | h2 { 155 | color: #7d7640; 156 | font-size: 1.1em; 157 | padding: 5px 0; 158 | } 159 | 160 | p { 161 | font-size: 1em; 162 | margin-bottom: 10px; 163 | } 164 | 165 | /*Formatações da area lateral*/ 166 | 167 | #beneficios li { 168 | padding: 8px; 169 | border-bottom: 1px solid #f3efcb; 170 | height: 6em; 171 | } 172 | 173 | #beneficios li a img { 174 | float: left; 175 | margin-right: 8px; 176 | } 177 | 178 | #beneficios li a p { 179 | color: #000; 180 | font-size: 0.8em; 181 | } 182 | 183 | #beneficios li a h3 { 184 | font-size: 1em; 185 | color: #615b2d; 186 | padding: 5px 0; 187 | background: url(../imagens/ornamento.png) no-repeat center right; 188 | } 189 | 190 | #beneficios li:hover { 191 | background: #f6f3d6; 192 | cursor: pointer; 193 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |59 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce scelerisque massa sed imperdiet lacinia. Quisque a auctor leo. In euismod molestie libero, in ullamcorper nulla lobortis at. Nulla aliquet rhoncus lorem sit amet porttitor. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Quisque hendrerit pellentesque eros, in ornare odio fringilla ornare. Aenean massa neque, laoreet eu blandit id, pulvinar id mi. Aenean efficitur semper mauris vitae malesuada. Vestibulum eget nunc ut sapien fermentum vehicula nec eu orci. Maecenas pharetra finibus dapibus. Aliquam ac magna lorem. 60 |
61 | 62 |63 | Sed hendrerit massa libero. Cras egestas tellus leo, et egestas metus tristique non. Nulla at sem sed sapien pellentesque scelerisque id eu massa. 64 |
65 | 66 |67 | Sed hendrerit massa libero. Cras egestas tellus leo, et egestas metus tristique non. Nulla at sem sed sapien pellentesque scelerisque id eu massa. 68 |
69 | 70 |
81 | 83 | Sed hendrerit massa libero. Cras egestas tellus leo, et egestas metus tristique non. Nulla at sem sed sapien pellentesque scelerisque id eu massa. 84 |
85 | 86 |
90 | 92 | Sed hendrerit massa libero. Cras egestas tellus leo, et egestas metus tristique non. Nulla at sem sed sapien pellentesque scelerisque id eu massa. 93 |
94 | 95 |
99 | 101 | Sed hendrerit massa libero. Cras egestas tellus leo, et egestas metus tristique non. Nulla at sem sed sapien pellentesque scelerisque id eu massa. 102 |
103 | 104 |