61 lines
3.7 KiB
HTML
61 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CruzCloud Shop</title>
|
|
<style>
|
|
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; margin: 0; background-color: #f2f8fd; color: #333; }
|
|
.header { background-color: #0071dc; padding: 15px 30px; display: flex; align-items: center; justify-content: space-between; color: white; }
|
|
.logo { font-size: 24px; font-weight: bold; letter-spacing: 1px; }
|
|
.search-bar { flex: 1; margin: 0 40px; padding: 12px 20px; border: none; border-radius: 24px; font-size: 16px; outline: none; }
|
|
.container { max-width: 1200px; margin: 40px auto; display: flex; gap: 30px; padding: 0 20px; }
|
|
.product-gallery { flex: 1; background: white; padding: 40px; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); text-align: center; }
|
|
.product-gallery img { max-width: 100%; height: auto; max-height: 400px; }
|
|
.product-info { flex: 1; display: flex; flex-direction: column; }
|
|
.brand { color: #0071dc; font-weight: 600; text-decoration: underline; cursor: pointer; margin-bottom: 8px; display: inline-block; }
|
|
.title { font-size: 28px; font-weight: 400; margin: 0 0 15px 0; line-height: 1.3; }
|
|
.price { font-size: 42px; font-weight: 700; color: #b12704; margin: 0 0 20px 0; display: flex; align-items: flex-start; }
|
|
.price span { font-size: 20px; margin-top: 5px; margin-right: 4px; }
|
|
.stock-status { color: #008a00; font-weight: bold; font-size: 18px; margin-bottom: 20px; }
|
|
.buy-box { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); border: 1px solid #e3e4e6; }
|
|
.btn { width: 100%; padding: 15px; border-radius: 24px; font-size: 16px; font-weight: bold; cursor: pointer; border: none; margin-bottom: 12px; transition: background-color 0.2s; }
|
|
.btn-cart { background-color: #ffd814; color: #0f1111; }
|
|
.btn-cart:hover { background-color: #f7ca00; }
|
|
.btn-buy { background-color: #ffa41c; color: #0f1111; }
|
|
.btn-buy:hover { background-color: #fa8900; }
|
|
.features { margin-top: 30px; font-size: 15px; line-height: 1.6; }
|
|
.features li { margin-bottom: 8px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header class="header">
|
|
<div class="logo">CruzCloud Shop</div>
|
|
<input type="text" class="search-bar" placeholder="Busca servidores, networking y más...">
|
|
<div class="account">Hola, Cristian</div>
|
|
</header>
|
|
<main class="container">
|
|
<div class="product-gallery">
|
|
<img src="https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&q=80&w=1000" alt="Servidor de alto rendimiento">
|
|
</div>
|
|
<div class="product-info">
|
|
<span class="brand">Visita la tienda de Infraestructura</span>
|
|
<h1 class="title">Servidor ZimaBoard 832 - Single Board Server para k3d y Docker (8GB RAM, 32GB eMMC)</h1>
|
|
<div class="price"><span>$</span>199<span>00</span></div>
|
|
|
|
<div class="buy-box">
|
|
<div class="stock-status">Disponible.</div>
|
|
<button class="btn btn-cart">Agregar al carrito</button>
|
|
<button class="btn btn-buy">Comprar ahora</button>
|
|
</div>
|
|
|
|
<ul class="features">
|
|
<li><strong>Procesador:</strong> Intel Celeron N3450 Quad-Core.</li>
|
|
<li><strong>Memoria:</strong> 8GB LPDDR4.</li>
|
|
<li><strong>Conectividad:</strong> Dual Gigabit Ethernet.</li>
|
|
<li><strong>Ideal para:</strong> Self-hosting, edge computing y laboratorios GitOps.</li>
|
|
</ul>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html> |