Repository: wwpedro/restaurentedesign Branch: main Commit: f24a0a7f0c35 Files: 13 Total size: 38.1 KB Directory structure: gitextract_74_ovxoa/ ├── css/ │ ├── all.css │ ├── cardapio.css │ ├── config.css │ ├── index.css │ ├── premios.css │ ├── reseva.css │ └── sobre.css ├── html/ │ ├── cardapio.html │ ├── premios.html │ ├── reserva.html │ └── sobre.html ├── index.html └── js/ └── animacao.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: css/all.css ================================================ @import "index.css"; @import "config.css"; @import "cardapio.css"; @import "premios.css"; @import "sobre.css"; @import "reseva.css"; ================================================ FILE: css/cardapio.css ================================================ #header_cardapio{ background-color: rgb(0, 0, 0); height: 550px; display: inline-block; width: 100%; } .head_cardapio_titulo{ align-items: center; display: flex; color: white; justify-content: center; font-family: "PosteramaThin"; font-size: 145px; padding-top: 5%; } .head_cardapio_menu{ margin-top: 7%; padding-bottom: 5%; } .head_cardapio_menu ul { list-style-type: none; margin: 0; padding: 0; overflow: hidden; align-items: center; display: flex; text-align: center; justify-content: center; } .head_cardapio_menu li { float: left; } .head_cardapio_menu li a { color: white; padding: 14px 16px; text-decoration: none; font-size: 30px; font-family: "PosteramaThin"; } .cardapio{ display: flex; flex-direction: column; align-items: center; justify-content: center; } .titulo_cardapio{ margin-top: 8%; font-size: 3rem; font-family: "PosteramaLigth"; } .itens_cardapio{ margin-top: 3%; margin-bottom: 7%; } .itens_cardapio ul{ list-style-type: none; margin: 0; padding: 0; overflow: hidden; align-items: center; display: flex; text-align: center; justify-content: center; flex-direction: column; } .itens_cardapio li{ padding: 14px 16px; text-decoration: none; font-size: 30px; } .cardapio span{ display:block; width:30%; /*or whatever width you want the effect of


