• 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 »
    • Diseño de sistema de ventas web [HTML] [CSS]
    • Imprimir
    Páginas: [1]   Ir Abajo

    Autor Tema: Diseño de sistema de ventas web [HTML] [CSS]  (Leído 4784 veces)

    Desconectado R3LI4NT

    • { L4 } Geek
    • ****
    • Mensajes: 302
    • El poder del usuario radica en su ANONIMATO.
      • Ver Perfil
      • GitHub
    Diseño de sistema de ventas web [HTML] [CSS]
    « en: Diciembre 28, 2021, 06:11:16 am »
    Hola comunidad!
    Espero que hayan pasado una navidad agradable y quiero desearles un buen próspero Año Nuevo 2022! Nunca se rindan y sigan sus metas.

    Esta vez les traigo un diseño de sistema de ventas web para que puedan implementarlo a su gusto, espero que sea de su agrado. Saludos



    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>Sistema de Ventas</title>
    8.     <link rel="stylesheet" href="style.css">
    9.     <link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
    10. </head>
    11. <body>
    12.     <div class="sidebar">
    13.         <div class="logo_content">
    14.             <div class="logo">
    15.                 <div class="avatar">
    16.                     <img src="img/avatar.png">
    17.                 </div>
    18.                 <h3>Admin</h3>
    19.             </div>
    20.         </div>
    21.  
    22.         <ul class="nav">
    23.             <li><a href="#"><i class='bx bxs-shield-alt-2'></i><span>Seguridad</span></a></li>
    24.             <li><a href="#"><i class='bx bxs-box'></i><span>Cajas</span></a></li>
    25.             <li><a href="#"><i class='bx bxl-product-hunt' ></i><span>Productos</span></a></li>
    26.             <li><a href="#"><i class='bx bxs-group'></i><span>Clientes</span></a></li>
    27.             <li><a href="#"><i class='bx bxs-message'></i><span>Solicitudes</span></a></li>
    28.             <li><a href="#"><i class='bx bxs-truck'></i><span>Repartos</span></a></li>
    29.             <li><a href="#"><i class='bx bxs-megaphone'></i><span>Reportes</span></a></li>
    30.             <li><a href="#"><i class='bx bxs-cog' ></i><span>Configuración</span></a></li>
    31.         </ul>
    32.     </div>
    33.  
    34.     <div class="menu_top">
    35.         <h4>Sistema de Ventas</h4>
    36.         <div class="sesion">
    37.             <span>Cerrar sesión<i class='bx bx-power-off' ></i></span>
    38.         </div>
    39.     </div>    
    40.  
    41.     <section class="section_1">
    42.         <div>
    43.             <div class="box1">
    44.                 <div class="users">
    45.                     <i class='bx bxs-user' ></i>
    46.                     <span>Usuarios</span>
    47.                     <p class="number">5</p>
    48.                 </div>
    49.                 <div class="detalles"><a href="">Ver detalles</a></div>
    50.             </div>
    51.         </div>
    52.  
    53.  
    54.         <div class="box2">
    55.             <div>
    56.                 <div class="productos">
    57.                     <i class='bx bxl-product-hunt' ></i>
    58.                     <span>Productos</span>
    59.                     <p class="number">37</p>
    60.                 </div>
    61.                 <div class="detalles"><a href="">Ver detalles</a></div>
    62.             </div>    
    63.         </div>
    64.  
    65.  
    66.         <div class="box3">
    67.             <div>
    68.                 <div class="cajas">
    69.                     <i class='bx bxs-box' ></i>
    70.                     <span>Cajas</span>
    71.                     <p class="number">110</p>
    72.                 </div>
    73.                 <div class="detalles"><a href="">Ver detalles</a></div>
    74.             </div>
    75.         </div>
    76.  
    77.  
    78.         <div class="box4">
    79.             <div>
    80.                 <div class="repartos">
    81.                     <i class='bx bxs-truck'></i>
    82.                     <span>Repartos</span>
    83.                     <p class="number">22</p>
    84.                 </div>
    85.                 <div class="detalles"><a href="">Ver detalles</a></div>
    86.             </div>    
    87.         </div>
    88.     </section>
    89.  
    90.     <section class="section_2">
    91.         <div class="box5">
    92.             <div>
    93.                 <div class="grafico">
    94.                     <i class='bx bx-bar-chart-square'></i>
    95.                     <span>Reporte Gráfico</span>
    96.                 </div>
    97.                 <div class="image">
    98.                     <img src="img/grafico.jpg" alt="">
    99.                 </div>
    100.             </div>    
    101.         </div>
    102.  
    103.  
    104.         <div class="box6">
    105.             <div>
    106.                 <div class="productos-top">
    107.                     <i class='bx bxs-label'></i>
    108.                     <span>Nuevos Productos</span>
    109.                 </div>
    110.                 <div class="productos-new">
    111.                     <div class="producto">
    112.                         <img src="img/caja.png" alt="">
    113.                         <p>PC Gamer</p>
    114.                         <button>Añadir</button>
    115.                     </div>
    116.  
    117.                     <div class="producto">
    118.                         <img src="img/caja.png" alt="">
    119.                         <p>iPhone X</p>
    120.                         <button>Añadir</button>
    121.                     </div>
    122.  
    123.                     <div class="producto">
    124.                         <img src="img/caja.png" alt="">
    125.                         <p>Webcam Razer</p>
    126.                         <button>Añadir</button>
    127.                     </div>
    128.  
    129.                     <div class="producto">
    130.                         <img src="img/caja.png" alt="">
    131.                         <p>PlayStation</p>
    132.                         <button>Añadir</button>
    133.                     </div>
    134.                 </div>
    135.             </div>    
    136.         </div>
    137.     </section>
    138. </body>
    139. </html>
    140.  


    Código: CSS
    1. @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
    2.  
    3. * {
    4.     margin: 0;
    5.     padding: 0;
    6.     box-sizing: border-box;
    7.     list-style: none;
    8.     text-decoration: none;
    9.     font-family: 'Poppins', sans-serif;
    10. }
    11.  
    12. body {
    13.     position: relative;
    14.     background-color: #f2f2f2;
    15. }
    16.  
    17. .sidebar {
    18.     width: 220px;
    19.     background-color: #232323;
    20.     height: 100vh;
    21.     position: fixed;
    22. }
    23.  
    24. .sidebar.active {
    25.     width: 240px;
    26. }
    27.  
    28. .logo_content {
    29.     height: 120px;
    30.     background-color: #1A1A1A;
    31. }
    32.  
    33. .logo_content .logo {
    34.     color: #fff;
    35.     display: flex;
    36.     padding: 20px 0;
    37.     text-transform: uppercase;
    38.     align-items: center;
    39.     justify-content: center;
    40. }
    41.  
    42. .logo_content .logo h3 {
    43.     position: relative;
    44.     top: 50px;
    45. }
    46.  
    47. .logo_content .logo .avatar {
    48.     display: flex;
    49.     position: absolute;
    50. }
    51.  
    52. .logo_content .logo .avatar img {
    53.     height: 50px;
    54.     background: #fff;
    55.     padding: 4px;
    56.     border-radius: 50%;
    57. }
    58.  
    59. .sidebar ul {
    60.     padding: 20px 10px;
    61. }
    62.  
    63. .sidebar ul li a {
    64.     color:#fff;
    65.     display: flex;
    66.     font-size: 14px;
    67.     align-items: center;
    68.     padding: 15px 10px;
    69.     transition: .3s ease;
    70. }
    71.  
    72. .sidebar ul li a:hover {
    73.     background: #1A1A1A;
    74.     border-radius: 7px;
    75. }
    76.  
    77. .sidebar ul li a i {
    78.     padding-right: 10px;
    79.     font-size: 18px;
    80. }
    81.  
    82. .sidebar ul li a span {
    83.     display: block;
    84. }
    85.  
    86. .menu_top {
    87.     position: relative;
    88.     left: 220px;
    89.     width: calc(100% - 220px);
    90.     padding: 20px;
    91.     background-color: #232323;
    92.     display: flex;
    93. }
    94.  
    95. .menu_top h4 {
    96.     color: #e67e22;
    97.     padding-left: 20px;
    98. }
    99.  
    100. .menu_top .sesion {
    101.     display: flex;
    102.     align-items: center;
    103.     margin-left: auto;
    104. }
    105.  
    106. .menu_top .sesion span {
    107.     color: #fff;
    108.     font-size: 13px;
    109. }
    110.  
    111. .menu_top .sesion span i {
    112.     font-size: 18px;
    113.     padding: 0 10px;
    114.     cursor: pointer;
    115.     transition: .2s ease;
    116. }
    117.  
    118. .menu_top .sesion span i:hover {
    119.     color: #e74c3c;
    120. }
    121.  
    122. /** CONTENIDO */
    123.  
    124. .section_1 {
    125.     position: relative;
    126.     left: 220px;
    127.     width: calc(100% - 220px);
    128.     padding: 20px;
    129.     background-color: #f2f2f2;
    130.     display: flex;
    131.     padding: 50px 40px;
    132.     height: 10%;
    133.     column-gap: 40px;
    134. }
    135.  
    136. /* CAJA 1 */
    137.  
    138. .section_1 .box1 {
    139.     background: #fff;
    140.     height: 105px;
    141.     width: 230px;
    142.     box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    143. }
    144.  
    145. .section_1 .box1 .users {
    146.     background-color: #E74C3C;
    147.     height: 50px;
    148.     display: flex;
    149.     padding: 13px;
    150.     box-shadow: -2px 2px 0px 2px rgba(231,76,60,.8);
    151.     transition: .4s ease;
    152. }
    153.  
    154. .section_1 .box1 .users:hover {
    155.     box-shadow: 2px 2px 0px 2px rgba(231,76,60,.8);
    156. }
    157.  
    158. .section_1 .box1 .users span {
    159.     color: #fff;
    160. }
    161.  
    162. .section_1 .box1 .users i {
    163.     color: #000;
    164.     font-size: 20px;
    165.     padding: 0 5px;
    166. }
    167.  
    168. .section_1 .box1 .users .number {
    169.     color: #fff;
    170.     text-transform: uppercase;
    171.     display: flex;
    172.     align-items: center;
    173.     margin-left: auto;
    174.     font-weight: 700;
    175.     font-size: 20px;
    176.     text-shadow: -1px 1px 1px #000;
    177. }
    178.  
    179. .section_1 .box1 .detalles {
    180.     padding: 20px;
    181. }
    182.  
    183. .section_1 .box1 .detalles a {
    184.     color: #000;
    185.     cursor: pointer;
    186.     font-size: 15px;
    187. }
    188.  
    189. .section_1 .box1 .detalles a:hover {
    190.     text-decoration: underline;
    191. }
    192.  
    193.  
    194.  
    195.  
    196. /* CAJA 2 */
    197.  
    198. .section_1 .box2 {
    199.     background: #fff;
    200.     height: 105px;
    201.     width: 230px;
    202.     box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    203. }
    204.  
    205. .section_1 .box2 .productos {
    206.     background-color: #4cd137;
    207.     height: 50px;
    208.     display: flex;
    209.     padding: 13px;
    210.     box-shadow: -2px 2px 0px 2px rgba(76,209,55,.6);
    211.     transition: .4s ease;
    212. }
    213.  
    214. .section_1 .box2 .productos:hover {
    215.     box-shadow: 2px 2px 0px 2px rgba(76,209,55,.6);
    216. }
    217.  
    218. .section_1 .box2 .productos span {
    219.     color: #fff;
    220. }
    221.  
    222. .section_1 .box2 .productos i {
    223.     color: #000;
    224.     font-size: 20px;
    225.     padding: 0 5px;
    226. }
    227.  
    228. .section_1 .box2 .productos .number {
    229.     color: #fff;
    230.     text-transform: uppercase;
    231.     display: flex;
    232.     align-items: center;
    233.     margin-left: auto;
    234.     font-weight: 700;
    235.     font-size: 20px;
    236.     text-shadow: -1px 1px 1px #000;
    237. }
    238.  
    239. .section_1 .box2 .detalles {
    240.     padding: 20px;
    241. }
    242.  
    243. .section_1 .box2 .detalles a {
    244.     color: #000;
    245.     cursor: pointer;
    246.     font-size: 15px;
    247. }
    248.  
    249. .section_1 .box2 .detalles a:hover {
    250.     text-decoration: underline;
    251. }
    252.  
    253.  
    254.  
    255. /* CAJA 3 */
    256.  
    257. .section_1 .box3 {
    258.     background: #fff;
    259.     height: 105px;
    260.     width: 230px;
    261.     box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    262. }
    263.  
    264. .section_1 .box3 .cajas {
    265.     background-color: #0099e5;
    266.     height: 50px;
    267.     display: flex;
    268.     padding: 13px;
    269.     box-shadow: -2px 2px 0px 2px rgba(0,153,229,.7);
    270.     transition: .4s ease;
    271. }
    272.  
    273. .section_1 .box3 .cajas:hover {
    274.     box-shadow: 2px 2px 0px 2px rgba(0,153,229,.7);
    275. }
    276.  
    277. .section_1 .box3 .cajas span {
    278.     color: #fff;
    279. }
    280.  
    281. .section_1 .box3 .cajas i {
    282.     color: #000;
    283.     font-size: 20px;
    284.     padding: 0 5px;
    285. }
    286.  
    287. .section_1 .box3 .cajas .number {
    288.     color: #fff;
    289.     text-transform: uppercase;
    290.     display: flex;
    291.     align-items: center;
    292.     margin-left: auto;
    293.     font-weight: 700;
    294.     font-size: 20px;
    295.     text-shadow: -1px 1px 1px #000;
    296. }
    297.  
    298. .section_1 .box3 .detalles {
    299.     padding: 20px;
    300. }
    301.  
    302. .section_1 .box3 .detalles a {
    303.     color: #000;
    304.     cursor: pointer;
    305.     font-size: 15px;
    306. }
    307.  
    308. .section_1 .box3 .detalles a:hover {
    309.     text-decoration: underline;
    310. }
    311.  
    312.  
    313.  
    314. /* CAJA 4 */
    315.  
    316. .section_1 .box4 {
    317.     background: #fff;
    318.     height: 105px;
    319.     width: 230px;
    320.     box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    321. }
    322.  
    323. .section_1 .box4 .repartos {
    324.     background-color: #ff6a00;
    325.     height: 50px;
    326.     display: flex;
    327.     padding: 13px;
    328.     box-shadow: -2px 2px 0px 2px rgba(255,106,0,.7);
    329.     transition: .4s ease;
    330. }
    331.  
    332. .section_1 .box4 .repartos:hover {
    333.     box-shadow: 2px 2px 0px 2px rgba(255,106,0,.7);
    334. }
    335.  
    336. .section_1 .box4 .repartos span {
    337.     color: #fff;
    338. }
    339.  
    340. .section_1 .box4 .repartos i {
    341.     color: #000;
    342.     font-size: 20px;
    343.     padding: 0 5px;
    344. }
    345.  
    346. .section_1 .box4 .repartos .number {
    347.     color: #fff;
    348.     text-transform: uppercase;
    349.     display: flex;
    350.     align-items: center;
    351.     margin-left: auto;
    352.     font-weight: 700;
    353.     font-size: 20px;
    354.     text-shadow: -1px 1px 1px #000;
    355. }
    356.  
    357. .section_1 .box4 .detalles {
    358.     padding: 20px;
    359. }
    360.  
    361. .section_1 .box4 .detalles a {
    362.     color: #000;
    363.     cursor: pointer;
    364.     font-size: 15px;
    365. }
    366.  
    367. .section_1 .box4 .detalles a:hover {
    368.     text-decoration: underline;
    369. }
    370.  
    371.  
    372.  
    373. /*SECTION 2 */
    374.  
    375. .section_2 {
    376.     position: relative;
    377.     left: 220px;
    378.     width: calc(100% - 220px);
    379.     padding: 20px;
    380.     background-color: #f2f2f2;
    381.     display: flex;
    382.     padding: 50px 40px;
    383.     height: auto;
    384.     column-gap: 40px;
    385. }
    386.  
    387. /* CAJA 5 */
    388.  
    389. .section_2 .box5 {
    390.     background: #fff;
    391.     height: 335px;
    392.     width: 570px;
    393.     box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    394. }
    395.  
    396. .section_2 .box5 .grafico {
    397.     background-color: #ffcc00;
    398.     height: 50px;
    399.     display: flex;
    400.     padding: 13px;
    401.     box-shadow: -2px 2px 0px 2px rgba(255,204,0,.5);
    402.     transition: .4s ease;
    403. }
    404.  
    405. .section_2  .box5 .grafico:hover {
    406.     box-shadow: 2px 2px 0px 2px rgba(255,204,0,.5);
    407. }
    408.  
    409. .section_2  .box5 .grafico i {
    410.     color: #000;
    411.     font-size: 20px;
    412.     padding: 0 5px;
    413. }
    414.  
    415. .section_2 .box5 .grafico span {
    416.     color: #fff;
    417. }
    418.  
    419. .section_2 .box5 .image {
    420.     width: 100%;
    421.     height: 100%;
    422.     justify-content: center;
    423.     align-items: center;
    424.     display: flex;
    425.     top: 25px;
    426.     position: relative;
    427. }
    428.  
    429. .section_2 .box5 img {
    430.     height: 250px;
    431. }
    432.  
    433.  
    434. /* CAJA 6 */
    435.  
    436.  
    437. .section_2 .box6 {
    438.     background: #fff;
    439.     height: 335px;
    440.     width: 430px;
    441.     box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    442. }
    443.  
    444. .section_2 .box6 .productos-top {
    445.     background-color: #323b43;
    446.     height: 50px;
    447.     display: flex;
    448.     padding: 13px;
    449.     box-shadow: -2px 2px 0px 2px rgba(50,59,67,.8);
    450.     transition: .4s ease;
    451. }
    452.  
    453. .section_2  .box6 .productos-top:hover {
    454.     box-shadow: 2px 2px 0px 2px rgba(50,59,67,.8);
    455. }
    456.  
    457. .section_2  .box6 .productos-top i {
    458.     color: #000;
    459.     font-size: 20px;
    460.     padding: 0 5px;
    461. }
    462.  
    463. .section_2 .box6 .productos-top span {
    464.     color: #fff;
    465. }
    466.  
    467. .section_2 .box6 .productos-new {
    468.     height: auto;
    469.     display: flex;
    470.     text-align: center;
    471.     padding-left: 20px;
    472.     padding-top: 30px;
    473.     padding-bottom: 30px;
    474.     flex-direction: column;
    475.     gap: 35px;
    476. }
    477.  
    478. .section_2 .box6 .producto {
    479.     display: flex;
    480.     width: 90%;
    481. }
    482.  
    483. .section_2 .box6 .producto img {
    484.     height: 30px;
    485.     padding-right: 30px;
    486.     padding-left: 30px;
    487. }
    488.  
    489. .section_2 .box6 .producto button {
    490.     color: #fff;
    491.     text-transform: uppercase;
    492.     display: flex;
    493.     margin-left: auto;
    494.     background: #00ad45;
    495.     width: 80px;
    496.     height: 34px;
    497.     outline: none;
    498.     cursor: pointer;
    499.     border: none;
    500.     display: flex;
    501.     align-items: center;
    502.     justify-content: center;
    503.     border-bottom: 2px solid #037932;
    504.     border-left: 2px solid #037932;
    505.     text-transform: none;
    506. }
    507.  
    508. .section_2 .box6 .producto button:active {
    509.     border: none;
    510. }
    511.  
    512.  


    Repositorio: https://github.com/R3LI4NT/sistema-ventas
    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

    Desconectado Miguelzangorano

    • { L0 } Ñuub
    • Mensajes: 4
      • Ver Perfil
    Re:Diseño de sistema de ventas web [HTML] [CSS]
    « Respuesta #1 en: Enero 21, 2022, 09:17:03 pm »
    Pinta tremenda!! wow
    En línea

    Desconectado R3LI4NT

    • { L4 } Geek
    • ****
    • Mensajes: 302
    • El poder del usuario radica en su ANONIMATO.
      • Ver Perfil
      • GitHub
    Re:Diseño de sistema de ventas web [HTML] [CSS]
    « Respuesta #2 en: Abril 02, 2022, 10:31:18 pm »
    #2



    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>Sistema de Ventas #2</title>
    8.     <link rel="stylesheet" href="style.css">
    9.     <link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
    10. </head>
    11. <body>
    12.     <div class="main">
    13.         <div class="menu">
    14.             <h3 id="logo"><p class="etiqueta">Admin</p>R3LI4NT</h3>
    15.             <a href="#"><i class='bx bxs-home'></i>Inicio</a>
    16.             <a href="#"><i class='bx bxs-group'></i>Clientes</a>
    17.             <a href="#"><i class='bx bxl-product-hunt' ></i>Productos</a>
    18.             <a href="#"><i class='bx bxs-truck'></i>Repartos</a>
    19.             <a href="#"><i class="bx bx-line-chart"></i>Estadísticas</a>
    20.             <a href="#"><i class='bx bxs-cog' ></i>Configuración</a>
    21.         </div>
    22.         <div class="content">
    23.             <h6>Sistema de Venta</h6>
    24.             <div class="card" style="border-bottom: 25px solid #027EF2;">
    25.                 <i class='bx bxs-group'></i>
    26.                 <p class="clients">Clientes</p>
    27.                 <p class="number">5</p>
    28.             </div>
    29.  
    30.             <div class="card" style="border-bottom: 25px solid #14EA78;">
    31.                 <i class='bx bxl-product-hunt' ></i>
    32.                 <p class="products">Productos</p>
    33.                 <p class="number">24</p>
    34.             </div>
    35.  
    36.             <div class="card" style="border-bottom: 25px solid #FB8D72;">
    37.                 <i class='bx bxs-truck'></i>
    38.                 <p class="repartos">Repartos</p>
    39.                 <p class="number">10</p>
    40.             </div>
    41.         </div>
    42.  
    43.         <div class="content2">
    44.             <div class="grafico">
    45.                 <p class="product-stock">Productos en stock</p>
    46.                 <div class="img">
    47.                     <img src="img/grafico_uno.png" alt="">
    48.                 </div>
    49.             </div>
    50.  
    51.             <div class="grafico2">
    52.                 <p class="product-stock">Productos más vendidos</p>
    53.                 <div class="img">
    54.                     <img src="img/grafico_dos.png" alt="">
    55.                 </div>
    56.             </div>
    57.         </div>
    58.     </div>
    59. </body>
    60. </html>
    61.  


    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=Londrina+Solid&display=swap');
    3.  
    4. * {
    5.     padding: 0;
    6.     margin: 0;
    7.     box-sizing: border-box;
    8.     text-decoration: none;
    9. }
    10.  
    11. body {
    12.     background: #1F1E30;
    13. }
    14.  
    15. .main {
    16.     width: 100%;
    17.     height: 100vh;
    18.     display: flex;
    19. }
    20.  
    21. .main .menu {
    22.     width: 20%;
    23.     margin: auto 12px;
    24.     height: 90%;
    25.     background: -webkit-linear-gradient(to right, #61045F, #AA076B);  
    26.     background: linear-gradient(to right, #61045F, #AA076B);
    27.     border-radius: 12px;
    28.     outline: 3px solid #AA076B;
    29.     outline-offset: 4px;
    30. }
    31.  
    32. #logo {
    33.     color: #fff;
    34.     font-family: 'Londrina Solid', cursive;
    35.     font-size: 30px;
    36.     letter-spacing: 1px;
    37.     padding: 20px 0;
    38.     text-shadow: 2px -1px 2px #000;
    39.     border-bottom: 1px solid  #f2f2f2;
    40.     text-align: center;
    41. }
    42.  
    43. .etiqueta {
    44.     display: flex;
    45.     font-size: 13px;
    46.     font-family: 'Poppins', sans-serif;
    47.     color: #000;
    48.     background: #D30000;
    49.     width: 51px;
    50.     height:25px;
    51.     border-radius: 5px;
    52.     border: 2px solid #FF0000;
    53.     text-align: center;
    54.     align-items: center;
    55.     position: absolute;
    56.     margin-left: 30px;
    57.     margin-top: 5px;
    58.     padding: 0 2px;
    59.     letter-spacing: 0;
    60.     text-shadow: none;
    61. }
    62.  
    63. .menu a {
    64.     color: #fff;
    65.     font-size: 16px;
    66.     display: list-item;
    67.     padding: 10px;
    68.     font-family: 'Poppins', sans-serif;
    69.     flex-direction: column;
    70.     border-top: 1px solid rgba(255,255,255,0.13);
    71.     border-bottom: 1px solid rgba(0,0,0,0.13);
    72.     cursor: pointer;
    73. }
    74.  
    75. .menu a:hover {
    76.     background: rgba(0,0,0,0.10);
    77. }
    78.  
    79. .bx {
    80.     font-size: 22px;
    81.     padding: 10px;
    82.     vertical-align: middle;
    83. }
    84.  
    85. .main .content {
    86.     background-color: #1F1E30;
    87.     padding: 20px;
    88.     display: flex;
    89.     position: relative;
    90. }
    91.  
    92. .main .content h6 {
    93.     color: #DEDEDE;
    94.     font-family: 'Poppins', sans-serif;
    95.     text-transform: uppercase;
    96.     font-size: 20px;
    97.     position: absolute;
    98. }
    99.  
    100. .main .card {
    101.     margin-top: 50px;
    102.     width: 260px;
    103.     height: 140px;
    104.     background-color: #272A3D;
    105.     border-radius: 6px;
    106.     margin: 60px 32px;
    107.     cursor: pointer;
    108.     transition: .4s ease;
    109. }
    110.  
    111. .main .card .bx {
    112.     color: #fff;
    113.     font-size: 35px;
    114. }
    115.  
    116. .main .card .clients {
    117.     font-family: 'Poppins', sans-serif;
    118.     color: #027EF2;
    119.     margin-left: 10px;
    120.     margin-top: -10px;
    121. }
    122.  
    123. .main .card .number {
    124.     color: #EDEDED;
    125.     float: right;
    126.     font-size: 30px;
    127.     margin-right: 15px;
    128.     margin-bottom: 10px;
    129.     font-family: 'Poppins', sans-serif;
    130. }
    131.  
    132. .card .products {
    133.     font-family: 'Poppins', sans-serif;
    134.     color: #14EA78;
    135.     margin-left: 10px;
    136.     margin-top: -10px;
    137. }
    138.  
    139. .card .repartos {
    140.     font-family: 'Poppins', sans-serif;
    141.     color: #FB8D72;
    142.     margin-left: 10px;
    143.     margin-top: -10px;
    144. }
    145.  
    146. .content2 .grafico {
    147.     position: absolute;
    148.     left: 317px;
    149.     top: 220px;
    150.     display: flex;
    151.     width: 420px;
    152.     height: 350px;
    153.     background-color: #272A3D;
    154.     border-radius: 6px;
    155.     margin: 60px 20px;
    156. }
    157.  
    158. .content2 .product-stock {
    159.     color: #DEDEDE;
    160.     font-family: 'Poppins', sans-serif;
    161.     font-size: 19px;
    162.     padding: 10px 15px;
    163. }
    164.  
    165. .content2 .img {
    166.     position: absolute;
    167.     top: 60px;
    168.     left: 70px;
    169. }
    170.  
    171. .content2 img {
    172.     height: 270px;
    173.     width: auto;
    174.     cursor: pointer;
    175.     transition: .4s ease;
    176. }
    177.  
    178. .content2 img:hover {
    179.     transform: scale(1.1);
    180. }
    181.  
    182.  
    183. .content2 .grafico2 {
    184.     position: absolute;
    185.     left: 817px;
    186.     top: 220px;
    187.     display: flex;
    188.     width: 420px;
    189.     height: 350px;
    190.     background-color: #272A3D;
    191.     border-radius: 6px;
    192.     margin: 60px 20px;
    193. }
    194.  
    195. .card:hover {
    196.     transform: scale(1.1);
    197. }
    198.  


    USO LIBRE: https://github.com/R3LI4NT/sistema-ventas
    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 »
    • Diseño de sistema de ventas web [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