MIX · extractor de estilos
Template: loloshoes.com.ar/index.html · mtime: 2026-03-26 20:21
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 4 Embebidos: 0 Externos: 4 Inline styles: 2 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: loloshoes.com.ar/index.html */
/* Template mtime: 2026-03-26 20:21:49 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
/* ============================================
       RESET Y VARIABLES - ESTILO PREMIUM REDONDEADO
    ============================================ */
    :root {
      --accent: #d62b3f;
      --accent-dark: #b81c2f;
      --accent-rgb: 214, 43, 63;
      --text: #121212;
      --text-light: #4a4a4a;
      --bg: #ffffff;
      --bg-soft: #fef8f8;
      --gray-100: #f8f9fa;
      --gray-200: #f0f0f0;
      --border-light: rgba(0, 0, 0, 0.06);
      --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 30px 50px -15px rgba(0, 0, 0, 0.12);
      --shadow-xl: 0 40px 70px -20px rgba(0, 0, 0, 0.18);
      --radius-sm: 20px;
      --radius-md: 28px;
      --radius-lg: 40px;
      --radius-xl: 60px;
      --nav-height: 85px;
      --transition: all 0.4s cubic-bezier(0.2, 0.95, 0.4, 1.05);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
      background: linear-gradient(145deg, #fff 0%, #fefaf8 100%);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.5;
    }

    /* ===== ANIMACIONES SUAVES ===== */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.96);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes floatGlow {
      0%, 100% { transform: translateY(0px) scale(1); }
      50% { transform: translateY(-10px) scale(1.02); }
    }

    .animate-up {
      animation: fadeUp 0.7s ease forwards;
      opacity: 0;
    }

    .hero-copy { animation-delay: 0.1s; }
    .hero-visual { animation-delay: 0.2s; }
    .hero-badge { animation: scaleIn 0.5s ease forwards; opacity: 0; animation-delay: 0.3s; }
    .hero-badge:nth-child(2) { animation-delay: 0.4s; }
    .hero-badge:nth-child(3) { animation-delay: 0.5s; }

    /* ===== TIPOGRAFÍA REDONDEADA ===== */
    h1, h2, h3, h4, h5, h6 {
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .section-title {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(214, 43, 63, 0.08);
      backdrop-filter: blur(4px);
      padding: 0.5rem 1.2rem;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
      border: 1px solid rgba(214, 43, 63, 0.2);
      margin-bottom: 1.5rem;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 0 2px rgba(214, 43, 63, 0.3);
    }

    /* ===== NAVBAR PREMIUM ===== */
    .navbar {
      padding: 0.8rem 0;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      transition: var(--transition);
    }

    .navbar > .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      gap: 1rem;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-right: 1rem;
      min-width: 0;
      flex: 0 1 auto;
      text-decoration: none;
    }

    .navbar.is-scrolled {
      padding: 0.5rem 0;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: var(--shadow-sm);
    }

    .navbar-brand img {
      height: 48px;
      width: auto;
      flex-shrink: 0;
      transition: var(--transition);
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.05));
    }

    .navbar-brand:hover img {
      transform: scale(1.02) rotate(-2deg);
    }

    .brand-wrap {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
      margin-left: 0;
      line-height: 1.05;
    }

    .brand-text {
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .brand-sub {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .nav-link {
      font-weight: 600;
      font-size: 0.88rem;
      padding: 0.55rem 0.9rem !important;
      border-radius: 100px;
      transition: var(--transition);
      color: var(--text);
      white-space: nowrap;
    }

    .navbar-nav {
      align-items: center;
      gap: 0.15rem;
    }

    .navbar-collapse {
      min-width: 0;
    }

    .nav-link:hover, .nav-link.active {
      background: rgba(214, 43, 63, 0.08);
      color: var(--accent);
    }

    .navbar-toggler {
      border: none;
      background: rgba(0,0,0,0.03);
      border-radius: var(--radius-sm);
      padding: 0.5rem 0.8rem;
      flex-shrink: 0;
      margin-left: auto;
      box-shadow: none !important;
    }

    /* ===== BOTONES REDONDEADOS ===== */
    .btn-main, .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 0.9rem 2rem;
      border-radius: 100px;
      font-weight: 700;
      font-size: 0.95rem;
      transition: var(--transition);
      cursor: pointer;
      border: none;
      letter-spacing: -0.01em;
    }

    .btn-main {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: white;
      box-shadow: 0 8px 20px rgba(214, 43, 63, 0.25);
    }

    .btn-main:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(214, 43, 63, 0.35);
    }

    .btn-outline {
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.1);
      color: var(--text);
      box-shadow: var(--shadow-sm);
    }

    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* ===== HERO SECTION ===== */
    .hero {
      padding: calc(var(--nav-height) + 3rem) 0 5rem;
      background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(214,43,63,0.03), transparent),
                  radial-gradient(ellipse 60% 40% at 90% 70%, rgba(214,43,63,0.04), transparent);
      position: relative;
      overflow: hidden;
    }

    .hero-title {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.04em;
      background: linear-gradient(145deg, #121212, #2c2c2c);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1.2rem;
    }

    .hero-text {
      font-size: 1rem;
      color: var(--text-light);
      max-width: 550px;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .hero-badges {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 2rem;
    }

    .hero-badge {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(8px);
      border-radius: var(--radius-md);
      padding: 1rem;
      border: 1px solid rgba(214,43,63,0.15);
      transition: var(--transition);
    }

    .hero-badge:hover {
      transform: translateY(-5px);
      background: white;
      border-color: var(--accent);
      box-shadow: var(--shadow-md);
    }

    .hero-badge strong {
      display: block;
      font-weight: 800;
      margin-bottom: 0.3rem;
    }

    .hero-badge span {
      font-size: 0.85rem;
      color: var(--text-light);
    }

    .hero-visual {
      position: relative;
    }

    .hero-card {
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(12px);
      border-radius: var(--radius-lg);
      padding: 1rem;
      box-shadow: var(--shadow-xl);
      border: 1px solid rgba(255,255,255,0.5);
      transition: var(--transition);
    }

    .hero-card:hover {
      transform: scale(1.01);
    }

    .hero-image-wrap {
      background: linear-gradient(145deg, #f5f5f5, #fff);
      border-radius: var(--radius-lg);
      padding: 2rem;
      text-align: center;
    }

    .hero-image-wrap img {
      max-width: 100%;
      filter: drop-shadow(0 20px 25px rgba(0,0,0,0.1));
      animation: floatGlow 5s ease-in-out infinite;
    }

    /* ===== CARDS PREMIUM ===== */
    .card-premium {
      background: white;
      border-radius: var(--radius-md);
      padding: 1.8rem;
      border: 1px solid var(--border-light);
      transition: var(--transition);
      height: 100%;
    }

    .card-premium:hover {
      transform: translateY(-6px);
      border-color: rgba(214,43,63,0.2);
      box-shadow: var(--shadow-lg);
    }

    .icon-circle {
      width: 56px;
      height: 56px;
      background: rgba(214,43,63,0.08);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      color: var(--accent);
      font-size: 1.6rem;
    }

    /* ===== GALERÍA MEJORADA ===== */
    .gallery-frame {
      background: white;
      border-radius: var(--radius-lg);
      padding: 1rem;
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .gallery-track {
      display: flex;
      gap: 1rem;
      transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .gallery-item {
      flex: 0 0 calc(25% - 0.75rem);
      aspect-ratio: 1 / 1;
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      transition: var(--transition);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-btn {
      width: 48px;
      height: 48px;
      border-radius: 60px;
      background: white;
      border: 1px solid var(--border-light);
      transition: var(--transition);
    }

    .gallery-btn:hover {
      background: var(--accent);
      color: white;
      border-color: var(--accent);
    }

    /* ===== SHOP IFRAME ===== */
    .shop-embed-section {
      background: linear-gradient(180deg, #fff 0%, #fef7f5 100%);
      padding: 5rem 0;
    }

    .shop-embed-wrap {
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-light);
      transition: var(--transition);
    }

    .shop-embed-wrap:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-xl);
    }

    .shop-embed-wrap iframe {
      width: 100%;
      min-height: 1250px;
      border: none;
      display: block;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: linear-gradient(135deg, #b81c2f 0%, #d62b3f 100%);
      color: white;
      padding: 4rem 0 2rem;
      border-radius: 48px 48px 0 0;
      margin-top: 2rem;
    }

    .footer a {
      color: rgba(255,255,255,0.8);
      transition: var(--transition);
      text-decoration: none;
    }

    .footer a:hover {
      color: white;
      transform: translateX(4px);
      display: inline-block;
    }

    /* ===== FORMULARIO ===== */
    .contact2-control, .contact2-select {
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-light);
      padding: 0.9rem 1.2rem;
      transition: var(--transition);
    }

    .contact2-control:focus, .contact2-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(214,43,63,0.1);
      outline: none;
    }

    .contact2-btn {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      border-radius: 100px;
      padding: 1rem;
      font-weight: 700;
      transition: var(--transition);
    }

    .contact2-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 25px rgba(214,43,63,0.3);
    }

    /* ===== ACORDEÓN ===== */
    .faq2-item {
      background: white;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-light);
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .faq2-question {
      padding: 1.2rem 1.5rem;
      font-weight: 700;
      background: white;
      border: none;
      width: 100%;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq2-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.3s ease;
    }

    .faq2-item.active .faq2-answer {
      grid-template-rows: 1fr;
    }

    .faq2-answer-inner {
      overflow: hidden;
      padding: 0 1.5rem 1.2rem;
      color: var(--text-light);
    }

    /* ===== WHATSAPP FLOTANTE ===== */
    .wa-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 1000;
    }

    .wa-btn {
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      transition: var(--transition);
      cursor: pointer;
      border: none;
    }

    .wa-btn:hover {
      transform: scale(1.08);
    }

    .wa-card {
      position: absolute;
      bottom: 75px;
      right: 0;
      width: 300px;
      background: white;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .navbar > .container {
        flex-wrap: wrap;
        gap: 0.75rem;
      }

      .navbar-brand {
        margin-right: 0;
        max-width: calc(100% - 76px);
      }

      .brand-text {
        font-size: 1rem;
      }

      .brand-sub {
        font-size: 0.66rem;
      }

      .navbar-collapse {
        width: 100%;
        flex-basis: 100%;
        background: white;
        border-radius: var(--radius-md);
        padding: 1rem;
        margin-top: 0.25rem;
        box-shadow: var(--shadow-md);
      }

      .navbar-nav {
        align-items: flex-start;
        gap: 0.35rem;
      }

      .nav-link {
        width: 100%;
      }

      .gallery-item {
        flex: 0 0 calc(33.333% - 0.7rem);
      }

      .hero-badges {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 767px) {
      .hero-badges {
        grid-template-columns: 1fr;
      }
      .gallery-item {
        flex: 0 0 calc(50% - 0.5rem);
      }
      .section-title {
        font-size: 2rem;
      }
      .hero-title {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 575px) {
      .navbar {
        padding: 0.65rem 0;
      }

      .navbar-brand {
        gap: 0.6rem;
        max-width: calc(100% - 68px);
      }

      .navbar-brand img {
        height: 40px;
      }

      .brand-text {
        font-size: 0.98rem;
      }

      .brand-sub {
        font-size: 0.62rem;
      }

      .navbar-toggler {
        padding: 0.45rem 0.7rem;
      }

      .gallery-item {
        flex: 0 0 100%;
      }
      .hero-actions {
        flex-direction: column;
      }
      .btn-main, .btn-outline {
        width: 100%;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
:root{
    --wa:#25D366;
    --wa-dark:#1fb85a;
    --light-bg:#ffffff;
    --light-bg-soft:#f6f8f7;
    --light-border:#dde4df;
    --dark-text:#1c1f1d;
    --muted-text:#6c756f;
  }

  .wa-float{
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    font-family: inherit;
  }

  .wa-btn{
    background: var(--wa);
    color: #fff;
    border: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
    cursor: pointer;
    transition: transform .3s, box-shadow .3s, filter .3s;
    position: relative;
    overflow: hidden;
    z-index: 9999;
  }

  .wa-btn:hover{
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 36px rgba(0,0,0,.28);
    filter: brightness(.98);
  }

  .wa-card{
    position: absolute;
    right: 0;
    bottom: 74px;
    width: min(360px, 92vw);
    background: var(--light-bg);
    color: var(--dark-text);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0,0,0,.25);
    border: 1px solid var(--light-border);
    transform: translateY(10px);
    opacity: 0;
    transition: transform .3s, opacity .3s;
    z-index: 10000;
  }

  .wa-card[aria-modal="true"]{
    transform: translateY(0);
    opacity: 1;
  }

  .wa-head{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #ffffff, #ecf6f0);
    border-bottom: 1px solid var(--light-border);
  }

  .wa-avatar{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e9f7ef;
    display: grid;
    place-items: center;
    border: 1px solid #cfeeda;
    overflow: hidden;
  }

  .wa-title{
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--dark-text);
  }

  .wa-status{
    font-size: .85rem;
    color: var(--muted-text);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .wa-status::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wa);
  }

  .wa-close{
    margin-left: auto;
    background: transparent;
    color: var(--muted-text);
    border: 0;
    font-size: 24px;
    cursor: pointer;
    opacity: .75;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
  }

  .wa-close:hover{
    opacity: 1;
    background: rgba(0,0,0,.04);
  }

  .wa-body{
    padding: 12px 14px;
    max-height: 40vh;
    overflow: auto;
    background: var(--light-bg-soft);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .wa-bubble{
    max-width: 88%;
    padding: 9px 11px;
    border-radius: 14px;
    line-height: 1.35;
    box-shadow: 0 3px 10px rgba(0,0,0,.06);
    animation: fadeIn .25s ease;
    font-size: 0.9rem;
  }

  @keyframes fadeIn{
    from{opacity:0; transform:translateY(5px)}
    to{opacity:1; transform:none}
  }

  .wa-bot{
    background: #ffffff;
    border: 1px solid var(--light-border);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
  }

  .wa-user{
    background: var(--wa);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
  }

  .wa-compose{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 10px 12px;
    background: #ffffff;
    border-top: 1px solid var(--light-border);
  }

  .wa-compose textarea{
    resize: none;
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid var(--light-border);
    background: #f9fbfa;
    color: var(--dark-text);
    outline: none;
    min-height: 44px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: .2s;
  }

  .wa-compose textarea:focus{
    border-color: var(--wa);
    box-shadow: 0 0 0 2px rgba(37,211,102,.15);
    background: #ffffff;
  }

  .wa-send{
    background: var(--wa);
    color: #ffffff;
    border: 0;
    border-radius: 12px;
    padding: 0 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
  }

  .wa-send:hover{
    background: var(--wa-dark);
    transform: scale(1.04);
  }

  .wa-body::-webkit-scrollbar{ width:6px; }
  .wa-body::-webkit-scrollbar-track{ background:rgba(0,0,0,.03); border-radius:3px; }
  .wa-body::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.12); border-radius:3px; }
  .wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(0,0,0,.18); }

  @media (max-width:480px){
    .wa-float{ right:12px; bottom:12px; }
    .wa-card{ width:calc(100vw - 24px); right:0; }
  }

      
Manifest preview
{
    "template": "loloshoes.com.ar/index.html",
    "template_mtime": 1774556509,
    "template_mtime_human": "2026-03-26T20:21:49+00:00",
    "css_links_found": [
        "https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"
    ],
    "css_links_external": [
        "https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 2,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}