The visual appearance of Cevichería El Sabor Marino is driven by a single stylesheet atDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/diazdavilajesus16-stack/Sevicheria-Mar-sabroso/llms.txt
Use this file to discover all available pages before exploring further.
static/assets/css/estilo.css. The site uses an ocean/marine theme built with dark blues as the background palette, #00e5ff cyan as the primary accent, and green for interactive buttons. Typography is handled by Poppins loaded from Google Fonts at weights 300, 400, 600, and 700. This page explains the key CSS classes, the color scheme, and how to make common visual changes.
Color scheme
The site’s accent color and button color appear in several places throughoutestilo.css. The main values to look for are:
| Name | Hex value | Used for |
|---|---|---|
| Cyan accent | #00e5ff | Highlighted text, price labels, link hovers |
| Button / primary | #28a745 | .btn background on dish and promo cards |
| Deep ocean background | #001a33 | .ocean-pro base gradient |
| Mid ocean | #002244 | Secondary gradient layer in ocean background |
estilo.css for #00e5ff and replace every occurrence with your desired hex value. Button colors are defined on the .btn rule — update that selector’s background-color and matching :hover state.
Key CSS classes
.ocean-pro — animated ocean background
.ocean-pro — animated ocean background
The
.ocean-pro container wraps all animated background elements: bubbles, fish, seaweed, and plants. It is absolutely positioned and covers the full viewport behind page content. Modify its background gradient to change the overall ocean tone..navbar — navigation bar
.navbar — navigation bar
.card — dish and promo cards
.card — dish and promo cards
Cards display dish photos, names, descriptions, prices, and an “Agregar” button. The class sets border-radius, box-shadow, and a white/light background. Adjust
border-radius and box-shadow to change the card’s visual weight..btn — buttons
.btn — buttons
.precio — price display
.precio — price display
Applied to the price
<span> inside each card. Styled with the #00e5ff cyan accent color and a slightly larger font-weight to make prices stand out..toast — notification toast
.toast — notification toast
A fixed-position notification that slides into view when a dish is added to the cart. The CSS animation shifts it from off-screen into the viewport corner and then back out. Adjust the
bottom/right offset values to reposition it..modal — modal dialog overlay
.modal — modal dialog overlay
Full-viewport overlay used for the cart review dialog. Modify
background (currently a semi-transparent dark color) and the inner .modal-content box’s border-radius and padding to restyle it.Responsive design
The stylesheet follows a mobile-first approach. Base rules target small screens, and@media (min-width: ...) breakpoints layer in larger-screen adjustments. The main breakpoints used are:
| Breakpoint | Target |
|---|---|
480px | Large mobile / small tablet |
768px | Tablet portrait |
1024px | Tablet landscape / small desktop |
1200px | Full desktop |
@media block to stay consistent with the existing approach.
Common customization tasks
Change the site accent color
Open
static/assets/css/estilo.css and replace all occurrences of #00e5ff with your chosen hex color. Also update any rgba(0, 229, 255, ...) values that reference the same cyan with the equivalent RGBA version of your new color.estilo.css
Change the button color
Locate the
.btn rule in estilo.css and update background-color together with the :hover state:estilo.css
Swap the logo
The logo image is loaded from For best results, use a PNG with a transparent background sized at roughly 160×60 px.
static/assets/img/logom.png. Replace that file with your new logo, keeping the same filename, or update the src attribute in the <img> tag inside the <nav> block in core/templates/home.html:home.html