• Inicio
  • Buscar
  • Ingresar
  • Registrarse

    Vuelve a España Google News después de 8 años y trae todas estas novedades

    • Hack x Crack - Comunidad de Seguridad informática »
    • Programación »
    • Programación Web »
    • Interfaz de tienda online [HTML] [CSS]
    • Imprimir
    Páginas: [1]   Ir Abajo

    Autor Tema: Interfaz de tienda online [HTML] [CSS]  (Leído 2527 veces)

    Desconectado R3LI4NT

    • { L4 } Geek
    • ****
    • Mensajes: 302
    • El poder del usuario radica en su ANONIMATO.
      • Ver Perfil
      • GitHub
    Interfaz de tienda online [HTML] [CSS]
    « en: Noviembre 02, 2021, 10:50:15 pm »
    Hi comunidad HxC!
    Vengo a compartir con ustedes una pequeña y sencilla interfaz de una tienda online que estuve desarrollando, eso sí, no es responsive (no tenía mucho tiempo que digamos, mes de parciales).





    El footer ya lo había subido al foro y supuse que reutilizarlo no estaría mal...





    HTML:

    Código: Text
    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4.     <meta charset="UTF-8">
    5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
    6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
    7.     <title>OpenCart</title>
    8.     <link rel="stylesheet" href="style/tienda.css">
    9.     <link rel="icon" type="image/png" href="img/favicon.png" sizes="16x16">
    10.  
    11.     <link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
    12. </head>
    13. <body>
    14.     <div class="container">
    15.         <a href="https://api.whatsapp.com/send?phone=+12222222222" class="wsp-btn" target="_blank">
    16.             <i class='bx bxl-whatsapp'></i>
    17.         </a>
    18.  
    19.         <div class="telefono">
    20.             <p>Venta telefónica: <i class='bx bxs-phone'>1111-2222</i></p>
    21.         </div>
    22.  
    23.         <div class="header">
    24.             <div class="logo">
    25.                 <img src="img/logo.png" alt="">
    26.             </div>
    27.             <div class="search">
    28.                 <input type="search" class="icono-placeholder" placeholder="Buscar productos...">
    29.                 <i class='bx bxs-cart'></i>
    30.             </div>
    31.         </div>
    32.  
    33.         <div class="menu">
    34.             <a href="#">Computación</a>
    35.             <a href="#">Celulares</a>
    36.             <a href="#">Electrodomesticos</a>
    37.             <a href="#">Bicicletas y Motos</a>
    38.             <a href="#">Smart TV</a>
    39.             <a href="#">Colchones</a>
    40.             <a href="#">Belleza</a>
    41.             <a href="#" class="oferta-btn" style="color: #fff;font-weight: bold;">Ofertas</a>
    42.         </div>
    43.  
    44.         <div class="slider-container middle">
    45.             <div class="slides">
    46.                 <input type="radio" name="rad" id="rad-1" checked>
    47.                 <input type="radio" name="rad" id="rad-2">
    48.                 <input type="radio" name="rad" id="rad-3">
    49.  
    50.                 <div class="slide s1">
    51.                     <img src="img/1.png" alt="">
    52.                 </div>
    53.  
    54.                 <div class="slide s2">
    55.                     <img src="img/2.png" alt="">
    56.                 </div>
    57.  
    58.                 <div class="slide s3">
    59.                     <img src="img/3.png" alt="">
    60.                 </div>
    61.                
    62.                 <div class="navegation">
    63.                     <label for="rad-1" class="bar"></label>
    64.                     <label for="rad-2" class="bar"></label>
    65.                     <label for="rad-3" class="bar"></label>
    66.                 </div>
    67.             </div>
    68.         </div>
    69.  
    70.         <div class="credito">
    71.             <h3>¡Pagá hasta en 24 cuotas sin interés!</h3>
    72.             <div class="tarjetas">
    73.                 <img src="img/paypal.png" alt="">
    74.                 <img src="img/visa.png" alt="">
    75.                 <img src="img/mastercard.png" alt="">
    76.                 <img src="img/discover.jpg" alt="">
    77.                 <img src="img/american-express.png" alt="">
    78.             </div>
    79.         </div>
    80.  
    81.         <div class="vendidos">
    82.            
    83.             <div class="card">
    84.                 <div class="image">
    85.                     <img src="img-ventas/acer.png" alt="">
    86.                     <div class="contenido">
    87.                         <h4>Acer Aspire A315-51</h4>
    88.                         <p>Precio Web: <span>USD587</span></p>
    89.                         <div class="añadir-btn">
    90.                             <button class="comprar-btn"><a href="">Añadir <i class='bx bxs-cart'></i></a></button>
    91.                         </div>
    92.                     </div>
    93.                 </div>
    94.             </div>
    95.  
    96.  
    97.             <div class="card">
    98.                 <div class="image">
    99.                     <img src="img-ventas/heladera.png" alt="">
    100.                     <div class="contenido">
    101.                         <h4>Heladera James</h4>
    102.                         <p>Precio Web: <span>USD999</span></p>
    103.                         <div class="añadir-btn">
    104.                             <button class="comprar-btn"><a href="">Añadir <i class='bx bxs-cart'></i></a></button>
    105.                         </div>
    106.                     </div>
    107.                 </div>
    108.             </div>
    109.  
    110.             <div class="card">
    111.                 <div class="image">
    112.                     <img src="img-ventas/moto-vital.png" alt="">
    113.                     <div class="contenido">
    114.                         <h4>Moto Vital Twist 125</h4>
    115.                         <p>Precio Web: <span>USD1.349</span></p>
    116.                         <div class="añadir-btn">
    117.                             <button class="comprar-btn"><a href="">Añadir <i class='bx bxs-cart'></i></a></button>
    118.                         </div>
    119.                     </div>
    120.                 </div>
    121.             </div>
    122.  
    123.             <div class="card">
    124.                 <div class="image">
    125.                     <img src="img-ventas/iphone-11.png" alt="">
    126.                     <div class="contenido">
    127.                         <h4>Iphone 11</h4>
    128.                         <p>Precio Web: <span>USD865</span></p>
    129.                         <p class="precio-antes" style="color: #212121;text-decoration:line-through;">Antes: USD799</p>
    130.                         <div class="añadir-btn">
    131.                             <button class="comprar-btn"><a href="">Añadir <i class='bx bxs-cart'></i></a></button>
    132.                         </div>
    133.                     </div>
    134.                 </div>
    135.             </div>
    136.  
    137.             <div class="card">
    138.                 <div class="image">
    139.                     <img src="img-ventas/ropero-8.png" alt="">
    140.                     <div class="contenido">
    141.                         <h4>Ropero 8 puertas</h4>
    142.                         <p>Precio Web: <span>USD374</span></p>
    143.                         <div class="añadir-btn">
    144.                             <button class="comprar-btn"><a href="">Añadir <i class='bx bxs-cart'></i></a></button>
    145.                         </div>
    146.                     </div>
    147.                 </div>
    148.             </div>
    149.  
    150.             <div class="card">
    151.                 <div class="image">
    152.                     <img src="img-ventas/tinta.png" alt="">
    153.                     <div class="contenido">
    154.                         <h4>Tinta Nutrisse</h4>
    155.                         <p>Precio Web: <span>USD16</span></p>
    156.                         <div class="añadir-btn">
    157.                             <button class="comprar-btn"><a href="">Añadir <i class='bx bxs-cart'></i></a></button>
    158.                         </div>
    159.                     </div>
    160.                 </div>
    161.             </div>
    162.  
    163.             <div class="card">
    164.                 <div class="image">
    165.                     <img src="img-ventas/telefunken.jpg" alt="">
    166.                     <div class="contenido">
    167.                         <h4>TV Telefunken 32"</h4>
    168.                         <p>Precio Web: <span>USD265</span></p>
    169.                         <p class="precio-antes" style="color: #212121;text-decoration:line-through;">Antes: USD319</p>
    170.                         <div class="añadir-btn">
    171.                             <button class="comprar-btn"><a href="">Añadir <i class='bx bxs-cart'></i></a></button>
    172.                         </div>
    173.                     </div>
    174.                 </div>
    175.             </div>
    176.  
    177.             <div class="card">
    178.                 <div class="image">
    179.                     <img src="img-ventas/sommier.jpg" alt="">
    180.                     <div class="contenido">
    181.                         <h4>Sommier 1 plaza</h4>
    182.                         <p>Precio Web: <span>USD1.349</span></p>
    183.                         <div class="añadir-btn">
    184.                             <button class="comprar-btn"><a href="">Añadir <i class='bx bxs-cart'></i></a></button>
    185.                         </div>
    186.                     </div>
    187.                 </div>
    188.             </div>
    189.             <div class="categorias-btn">
    190.                 <div class="categorias-border-bottom">
    191.                     <button><a href="#">Ver todas las categorías</a></button>
    192.                 </div>
    193.             </div>
    194.         </div>
    195.  
    196.         <footer>
    197.             <div class="columna-1">
    198.                 <div class="logo">Open<span style="font-weight: 600; color: #FF3030;">cart</span></div>
    199.                 <div class="social-icons">
    200.                     <i class='bx bxl-facebook icons'></i>
    201.                     <i class='bx bxl-instagram icons' ></i>
    202.                     <i class='bx bxl-twitter icons' ></i>
    203.                     <i class='bx bxl-whatsapp bx-wsp icons'></i>
    204.                 </div>
    205.             </div>
    206.             <div class="columna-2">
    207.                 <div class="sub-item">Empresa</div>
    208.                 <ul>
    209.                     <li class="info">Contacto</li>
    210.                     <li class="info">Soporte</li>
    211.                     <li class="info">Productos</li>
    212.                     <li class="info">Privacidad</li>
    213.                     <li class="info">Cookies</li>
    214.                 </ul>
    215.             </div>
    216.             <div class="columna-3">
    217.                 <div class="sub-item">Links</div>
    218.                 <ul>
    219.                     <li><i class='bx bx-chevron-right'></i><a href="#" class="link">Link #1</a></li>
    220.                     <li><i class='bx bx-chevron-right'></i><a href="#" class="link">Link #1</a></li>
    221.                     <li><i class='bx bx-chevron-right'></i><a href="#" class="link">Link #3</a></li>
    222.                     <li><i class='bx bx-chevron-right'></i><a href="#" class="link">Link #4</a></li>
    223.                     <li><i class='bx bx-chevron-right'></i><a href="#" class="link">Link #5</a></li>
    224.                 </ul>
    225.             </div>
    226.             <div class="columna-4">
    227.                 <div class="sub-item">
    228.                     <i class='bx bx-envelope' ></i>
    229.                     <div class="info-inbox">Envíanos un comentario!</div>
    230.                 </div>
    231.                 <div class="formulario formulario-responsive">
    232.                     <input type="text" placeholder="Your Email">
    233.                     <textarea placeholder="Escribe aquí tus comentarios" rows="10" cols="40">Escribe aquí tus comentarios</textarea>
    234.                     <button class="btn-enviar"><a href="#">Enviar</a></button>
    235.                 </div>
    236.             </div>
    237.             <div class="copyright">
    238.                 <span class="text">Opencart &copy;2021, Todos los derechos reservados.</span>
    239.             </div>
    240.         </footer>
    241.     </div>
    242. </body>
    243. </html>
    244.  


    CSS:

    Código: CSS
    1. @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
    2. @import url('https://fonts.googleapis.com/css2?family=Poppins:[email protected]&display=swap');
    3. @import url('https://fonts.googleapis.com/css2?family=Lato:[email protected]&display=swap');
    4.  
    5.  
    6. * {
    7.     padding: 0;
    8.     margin: 0;
    9.     box-sizing: border-box;
    10.     text-decoration: none;
    11.     list-style: none;
    12. }
    13.  
    14. body {
    15.     height: 100vh;
    16.     width: 100%;
    17.     background: #fff;
    18. }
    19.  
    20. .wsp-btn{
    21.     position:fixed;
    22.     color:#fff;
    23.     border-radius:50px;
    24.     text-align:center;
    25.     font-size:35px;
    26.     width:60px;
    27.     height:60px;
    28.     line-height: 63px;
    29.     bottom:25px;
    30.     right:25px;
    31.     background:#25d366;
    32.     box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    33.     z-index:100;
    34.     transition: all 300ms ease;
    35.     border: 2px solid #fff;
    36. }
    37. .wsp-btn:hover{
    38.     background: #20ba5a;
    39. }
    40.  
    41. .telefono {
    42.     height: 40px;
    43.     width: 100%;
    44.     background-color: #F5F5F5;
    45.     justify-content: end;
    46.     display: flex;
    47.     line-height: 40px;
    48.     border-bottom: 2px solid #F1F1F1;
    49. }
    50.  
    51. .telefono p {
    52.     color: rgb(0,0,0,.7);
    53.     font-family: 'Poppins', sans-serif;
    54.     font-size: 13px;
    55.     padding-right: 50px;
    56.     font-size: 400;
    57. }
    58.  
    59. .telefono i {
    60.     color: #000;
    61.     font-size: 16px;
    62.     font-family: 'Poppins', sans-serif;
    63.     font-size: 400;
    64.     padding-left: 3px;
    65. }
    66.  
    67. .header {
    68.     width: 100%;
    69.     background: #fff;
    70.     display: flex;
    71. }
    72.  
    73. .header .logo {
    74.     padding: 30px;
    75. }
    76.  
    77. .header img {
    78.     height: 40px;
    79.     width: auto;
    80. }
    81.  
    82. .header .search {
    83.     padding: 30px;
    84.     width: 100%;
    85.     display: flex;
    86.     justify-content: end;
    87. }
    88.  
    89. .header .search input {
    90.     height: 40px;
    91.     width: 60%;
    92.     outline: none;
    93.     border: 1px solid #D8D8D8;
    94.     padding: 10px;
    95. }
    96.  
    97. .header .search input:focus {
    98.     border: 1px solid #C7C7C7;
    99. }
    100.  
    101. .header .search i {
    102.     font-size: 35px;
    103.     line-height: 40px;
    104.     padding: 0 20px;
    105.     transition: 0.3s;
    106.     cursor: pointer;
    107.     color: rgb(0,0,0,.8);
    108. }
    109.  
    110. .header .search i:hover {
    111.     color: #BF0303;
    112. }
    113.  
    114. .menu {
    115.     background-color: #F5F5F5;
    116.     width: 100%;
    117.     display: flex;
    118.     justify-content: center;
    119.     align-items: center;
    120.     text-align: center;
    121.     box-shadow: 0px 15px 5px -15px #111;
    122. }
    123.  
    124. .menu a {
    125.     text-transform: uppercase;
    126.     font-family: 'Lato', sans-serif;
    127.     font-weight: 400;
    128.     color: rgb(0,0,0,.8);
    129.     padding: 20px;
    130.     font-size: 15px;
    131.     transition: 0.5s;
    132.     cursor: pointer;
    133.     letter-spacing: .4px;
    134. }
    135.  
    136. .menu a:hover {
    137.     color: #EA0000;
    138. }
    139.  
    140. .oferta-btn {
    141.     background: #A30101;
    142.     clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    143. }    
    144.  
    145. .credito {
    146.     width: 100%;
    147.     display: flex;
    148.     justify-content: center;
    149.     align-items: center;
    150.     text-align: center;
    151.     flex-direction: column;
    152.     padding: 5px 0;
    153. }
    154.  
    155. .credito h3 {
    156.     font-family: 'Poppins', sans-serif;
    157.     font-size: 19px;
    158.     font-weight: bold;
    159.     color: rgb(0,0,0,.8);
    160.     padding-top: 30px;
    161. }
    162.  
    163. .credito .tarjetas {
    164.     padding: 45px 25px;
    165.     border-bottom: 1px solid #E5E5E5;
    166.     width: 92%;
    167. }
    168.  
    169. .credito .tarjetas img{
    170.     height: 30px;
    171.     width: auto;
    172.     padding: 0 30px;
    173.     transition: 0.3s;
    174.     cursor: pointer;
    175. }
    176.  
    177. .credito .tarjetas img:hover {
    178.     transform: scale(1.1);
    179. }
    180.  
    181. .vendidos {
    182.     width: 100%;
    183.     padding: 30px;
    184.     display: flex;
    185.     flex-wrap: wrap;
    186. }    
    187.  
    188. .vendidos h2 {
    189.     text-align: center;
    190.     justify-content: center;
    191.     align-items: center;
    192.     display: flex;
    193.     font-family: 'Poppins', sans-serif;
    194.     text-transform: uppercase;
    195.     color: rgb(0,0,0,.9);
    196.     letter-spacing: 1px;
    197.     padding: 30px 0;
    198.     font-size: 27px;
    199. }
    200.  
    201. .vendidos .card {
    202.     width: 300px;
    203.     height: 385px;
    204.     background: #FDFDFD;
    205.     border: 1px solid #E1E1E1;
    206.     font-family: 'Poppins', sans-serif;
    207.     transition: 0.6s;
    208.     margin: 10px 20px;
    209.     flex: 1 0 21%;
    210. }
    211.  
    212. .vendidos .card:hover {
    213.     transform: scale(1.1);
    214.     box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    215. }
    216.  
    217. .vendidos .card img {
    218.     height: 180px;
    219.     width: auto;
    220.     transition: 0.5s;
    221.     padding-top: 20px;
    222.     cursor: pointer;
    223. }
    224.  
    225. .vendidos .card img:hover {
    226.     transform: scale(1.1);
    227. }
    228.  
    229. .vendidos .card .image {
    230.     height: 100%;
    231.     justify-content: center;
    232.     align-items: center;
    233.     display: flex;
    234.     flex-direction: column;
    235. }
    236.  
    237. .vendidos .contenido {
    238.     width: 100%;
    239.     justify-content: center;
    240.     align-items: center;
    241.     text-align: center;
    242. }
    243.  
    244. .vendidos h4 {
    245.     color: rgb(0,0,0,.6);
    246.     font-weight: 300;
    247.     padding-top: 15px;
    248. }
    249.  
    250. .vendidos p {
    251.     color: #EA0000;
    252.     font-weight: bold;
    253.     padding-top: 20px;
    254. }
    255.  
    256. .vendidos p span {
    257.     color: rgb(0,0,0,.8);
    258. }
    259.  
    260. .vendidos .añadir-btn {
    261.     width: 100%;
    262.     justify-content: center;
    263.     align-items: center;
    264.     display: flex;
    265. }
    266.  
    267. .vendidos .comprar-btn {
    268.     background: #EA0000;
    269.     outline: none;
    270.     border: none;
    271.     height: 35px;
    272.     width: 90px;
    273.     margin-top: 15px;
    274.     cursor: pointer;
    275.     border-radius: 5px;
    276.     display: flex;
    277.     line-height: 35px;
    278.     transition: 0.3s;
    279. }
    280.  
    281. .vendidos .comprar-btn a {
    282.     color: #fff;
    283.     font-family: 'Poppins', sans-serif;
    284.     padding: 0 10px;
    285.     font-size: 14px;
    286. }
    287.  
    288. .vendidos .comprar-btn i {
    289.     font-size: 18px;
    290. }
    291.  
    292. .vendidos .comprar-btn:hover {
    293.     opacity: 0.6;
    294. }
    295.  
    296. .precio-antes {
    297.     font-size: 14px;
    298. }
    299.  
    300. .slider-container {
    301.     width: 100%;
    302.     height: 330px;
    303.     overflow: hidden;
    304. }
    305.  
    306. .middle {
    307.     position: relative;
    308. }
    309.  
    310. .navegation {
    311.     position: absolute;
    312.     left: 50%;
    313.     bottom: 15px;
    314.     transform: translateX(-50%);
    315.     display: flex;
    316. }
    317.  
    318. .bar {
    319.     width: 15px;
    320.     height: 15px;
    321.     border: 2px solid #BF0303;
    322.     border-radius: 50%;
    323.     margin:0 10px;
    324.     transition: 0.3s;
    325.     cursor: pointer;
    326. }
    327.  
    328. .bar:hover {
    329.     background: #A30101;
    330.     border: 2px solid #BF0303;
    331. }
    332.  
    333. input[name="rad"] {
    334.     position: absolute;
    335.     visibility: hidden;
    336. }
    337.  
    338. .slides {
    339.     width: 500%;
    340.     height: 100%;
    341.     display: flex;
    342. }
    343.  
    344. .slide {
    345.     width: 20%;
    346.     transition: 0.6s;
    347. }
    348.  
    349. .slide img {
    350.     width: 100%;
    351.     height: 100%;
    352. }
    353.  
    354. #rad-1:checked ~ .s1 {
    355.     margin-left: 0;
    356. }
    357.  
    358. #rad-2:checked ~ .s1 {
    359.     margin-left: -20%;
    360. }
    361.  
    362. #rad-3:checked ~ .s1 {
    363.     margin-left: -40%;
    364. }
    365.  
    366. .categorias-btn {
    367.     width: 100%;
    368.     justify-content: center;
    369.     display: flex;
    370.     align-items: center;
    371.     text-align: center;
    372.     padding: 25px 0;
    373. }
    374.  
    375. .categorias-btn button {
    376.     background: #EA0000;
    377.     outline: none;
    378.     border: none;
    379.     height: 50px;
    380.     width: 280px;
    381.     cursor: pointer;
    382.     transition: 0.4s;
    383. }
    384.  
    385. .categorias-btn button:hover {
    386.     transform: translateY(-10px);
    387.     opacity: 0.7;
    388. }
    389.  
    390. .categorias-btn button a {
    391.     color: #fff;
    392.     text-transform: uppercase;
    393.     font-family: 'Poppins', sans-serif;
    394.     font-weight: 500;
    395. }
    396.  
    397. .categorias-border-bottom {
    398.     width: 96%;
    399.     border-bottom: 1px solid #E5E5E5;
    400.     padding-bottom: 20px;
    401. }
    402.  
    403. /* FOOTER */
    404.  
    405. footer {
    406.     bottom: 0;
    407.     left: 0;
    408.     width: 100%;
    409.     background: #161515;
    410.     color: #fff;
    411.     position: relative;
    412.     display: flex;
    413.     justify-content: space-between;
    414.     padding: 3.55rem 1.35rem;
    415.     padding-bottom: 6rem;
    416.     font-family: 'Poppins', sans-serif;
    417. }
    418.  
    419. footer .logo {
    420.     color: #fff;
    421.     font-size: 30px;
    422.     text-shadow: 0px 3px 5px #000;
    423. }
    424.  
    425. .social-icons {
    426.     font-size: 20px;
    427.     display: flex;
    428.     gap: 10px;
    429.     margin: 20px 0;
    430. }
    431.  
    432. .bxl-facebook {
    433.     border-radius: 50%;
    434.     background: #3b5998;
    435.     color: #fff;
    436.     padding: 5px;
    437. }
    438.  
    439. .bxl-instagram {
    440.     border-radius: 50%;
    441.     background: #DD2A7B;
    442.     color: #fff;
    443.     padding: 5px;
    444. }
    445.  
    446. .bxl-twitter {
    447.     border-radius: 50%;
    448.     background: #00ACEE;
    449.     color: #fff;
    450.     padding: 5px;
    451. }
    452.  
    453. .bx-wsp{
    454.     border-radius: 50%;
    455.     background: #25d366;
    456.     color: #fff;
    457.     padding: 5px;
    458. }
    459.  
    460. .icons {
    461.     cursor: pointer;
    462. }
    463. .icons:hover {
    464.     opacity: 0.5;
    465. }
    466.  
    467. .sub-item {
    468.     display: flex;
    469.     font-size: 19px;
    470.     margin: 12px 0;
    471.     color: #F6392F;
    472.     text-transform: uppercase;
    473.     align-items: center;
    474.     gap: 10px;
    475. }
    476.  
    477. li {
    478.     padding: 6px 0;
    479.     font-size: 15px;
    480. }
    481.  
    482. li .link {
    483.     color: #fff;
    484.     opacity: 0.7;
    485. }
    486.  
    487. li .link:hover {
    488.     color: #fff;
    489.     cursor: pointer;
    490.     opacity: 1;
    491. }
    492.  
    493. .bx-chevron-right {
    494.     font-size: 18px;
    495. }
    496.  
    497. .info {
    498.     opacity: 0.7;
    499.     transition: 0.2s;
    500.     cursor: pointer;
    501. }
    502.  
    503. .info:hover {
    504.     opacity: 1;
    505. }
    506.  
    507. .info-inbox {
    508.  
    509.     text-transform: none;
    510.     font-size: 16px;
    511. }
    512.  
    513. .bx-envelope {
    514.     color: #fff;
    515.     font-size: 23px;
    516. }
    517.  
    518. input {
    519.     border: none;
    520.     outline: none;
    521.     height: 35px;
    522.     width: 250px;
    523.     padding: 0 10px;
    524.     background: none;
    525.     border-radius: 6px;
    526.     border: 2px solid #F6392F;
    527.     color: #fff;
    528.     transition: 0.4s;
    529.     font-weight: 400;
    530. }
    531.  
    532. input:focus {
    533.     transition: 0.4s;
    534.     background: #110413;
    535.     font-weight: 200;
    536. }
    537.  
    538. .formulario {
    539.     display: flex;
    540.     flex-direction: column;
    541. }
    542.  
    543. .btn-enviar {
    544.     margin: 5px 0;
    545.     width: 120px;
    546.     height: 35px;
    547.     background: #F6392F;
    548.     border-radius: 6px;
    549.     outline: none;
    550.     border: none;
    551.     color: #fff;
    552.     text-transform: uppercase;
    553.     font-size: 17px;
    554.     cursor: pointer;
    555.     box-shadow: 0 0 10px #000;
    556.     transition: 0.3s;
    557.     font-weight: bold;
    558.     letter-spacing: 1px;
    559. }
    560.  
    561. .btn-enviar:hover {
    562.     box-shadow: none;
    563.     transform: translateY(-5px);
    564. }
    565.  
    566. .btn-enviar a {
    567.     color: #fff;
    568. }
    569.  
    570. textarea {
    571.     width: 77%;
    572.     margin: 10px 0;
    573.     height: 100px;
    574.     outline: none;
    575.     border-radius: 6px;
    576.     border: 2px solid #F6392F;
    577.     background: none;
    578.     color: #fff;
    579.     font-weight: 200;
    580.     padding: 5px 5px;
    581.     opacity: 0.7;
    582. }
    583.  
    584. textarea:focus {
    585.     transition: 0.4s;
    586.     background: #110413;
    587.     font-weight: 200;
    588.     opacity: 1;
    589. }
    590.  
    591. .columa-4{
    592.     width: 30%;
    593.     display: flex;
    594.     flex-direction: column;
    595. }
    596.  
    597. .copyright {
    598.     position: absolute;
    599.     width: 100%;
    600.     bottom: 0;
    601.     left: 0;
    602.     height: 50px;
    603.     background: #f2f2f2;
    604.     color: #000;
    605.     align-items: center;
    606.     display: flex;
    607. }
    608.  
    609. .copyright .text {
    610.     padding: 0 20px;
    611. }
    612.  

    DESCARGAR PROYECTO
    Mediafire: https://www.mediafire.com/folder/x2cesbgl7344l/Tienda_Online
    MEGA: https://mega.nz/folder/yOgyAKhA#A4YIgDenU16ZkLPQq2mb7Q
    « Última modificación: Noviembre 03, 2021, 03:15:07 pm por R3LI4NT »
    En línea

    No contesto dudas por MP, si las tienes, las planteas en el foro.

    Road To Hacking v3: https://github.com/R3LI4NT/road-to-hacking

    • Imprimir
    Páginas: [1]   Ir Arriba
    • Hack x Crack - Comunidad de Seguridad informática »
    • Programación »
    • Programación Web »
    • Interfaz de tienda online [HTML] [CSS]
     

    • SMF | SMF © 2013, Simple Machines
    • XHTML
    • RSS
    • WAP2
    Va un mudo y le dice a un sordo: Hack x Crack usa cookies. Pues eso... Learn more