|
|
| Línea 1: |
Línea 1: |
| <!DOCTYPE html>
| | <div id="layout"><h1 id="page-title"> |
| <html lang="es">
| | <span class="namespace">Observatorio Parlamentario / </span> |
| <head>
| |
| <meta charset="UTF-8" />
| |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" />
| |
| <title>Proyecto: Rebaja transitoria del impuesto a las donaciones y herencias — Observatorio Kast</title>
| |
| <link href="https://fonts.googleapis.com/css2?family=Linux+Libertine+O:ital,wght@0,400;0,600;1,400&family=Linux+Biolinum+O&family=Source+Sans+3:ital,wght@0,400;0,600;1,400&display=swap" rel="stylesheet" />
| |
| <style>
| |
| :root {
| |
| --bg: #f8f9fa;
| |
| --surface: #ffffff;
| |
| --border: #a2a9b1;
| |
| --border-light: #eaecf0;
| |
| --text: #202122;
| |
| --text-muted: #54595d;
| |
| --link: #3366cc;
| |
| --link-hover: #cc3333;
| |
| --accent: #3366cc;
| |
| --table-header: #eaecf0;
| |
| --infobox-border: #a2a9b1;
| |
| --warning-bg: #fef6e7;
| |
| --warning-border: #f28500;
| |
| --tag-announced: #fff3cd;
| |
| --tag-announced-border: #e6ac00;
| |
| --tag-announced-text: #664d00;
| |
| }
| |
| | |
| * { box-sizing: border-box; margin: 0; padding: 0; }
| |
| | |
| body {
| |
| font-family: 'Source Sans 3', 'Linux Libertine O', Georgia, serif;
| |
| font-size: 14px;
| |
| color: var(--text);
| |
| background: var(--bg);
| |
| line-height: 1.6;
| |
| }
| |
| | |
| /* ─── TOP BAR ─── */
| |
| #top-bar {
| |
| background: #ffffff;
| |
| border-bottom: 1px solid var(--border);
| |
| padding: 0 20px;
| |
| display: flex;
| |
| align-items: center;
| |
| justify-content: space-between;
| |
| height: 50px;
| |
| }
| |
| #top-bar .site-name {
| |
| font-family: 'Linux Libertine O', Georgia, serif;
| |
| font-size: 20px;
| |
| font-weight: 600;
| |
| color: var(--text);
| |
| text-decoration: none;
| |
| }
| |
| #top-bar .site-name span { color: var(--accent); }
| |
| #top-bar .top-links { display: flex; gap: 14px; font-size: 12.5px; }
| |
| #top-bar .top-links a { color: var(--link); text-decoration: none; }
| |
| #top-bar .top-links a:hover { text-decoration: underline; }
| |
| | |
| /* ─── TABS BAR ─── */
| |
| #tabs-bar {
| |
| background: var(--surface);
| |
| border-bottom: 1px solid var(--border);
| |
| padding: 0 20px;
| |
| display: flex;
| |
| align-items: flex-end;
| |
| height: 32px;
| |
| }
| |
| .tab {
| |
| font-size: 12.5px;
| |
| padding: 6px 12px;
| |
| border: 1px solid transparent;
| |
| border-bottom: none;
| |
| margin-bottom: -1px;
| |
| cursor: pointer;
| |
| color: var(--link);
| |
| text-decoration: none;
| |
| background: transparent;
| |
| border-radius: 2px 2px 0 0;
| |
| }
| |
| .tab.active {
| |
| background: var(--surface);
| |
| border-color: var(--border);
| |
| border-bottom-color: var(--surface);
| |
| color: var(--text);
| |
| font-weight: 600;
| |
| }
| |
| .tab:not(.active):hover { background: var(--border-light); }
| |
| | |
| /* ─── LAYOUT ─── */
| |
| #layout {
| |
| display: flex;
| |
| max-width: 1200px;
| |
| margin: 0 auto;
| |
| }
| |
| | |
| /* ─── SIDEBAR ─── */
| |
| #sidebar {
| |
| width: 200px;
| |
| min-width: 200px;
| |
| background: var(--surface);
| |
| border-right: 1px solid var(--border-light);
| |
| padding: 16px 0;
| |
| font-size: 12.5px;
| |
| }
| |
| .sidebar-section { margin-bottom: 12px; }
| |
| .sidebar-title {
| |
| font-weight: 700;
| |
| font-size: 11px;
| |
| text-transform: uppercase;
| |
| letter-spacing: 0.05em;
| |
| color: var(--text-muted);
| |
| padding: 4px 16px 2px;
| |
| }
| |
| .sidebar-link {
| |
| display: block;
| |
| padding: 3px 16px;
| |
| color: var(--link);
| |
| text-decoration: none;
| |
| }
| |
| .sidebar-link:hover { background: var(--border-light); }
| |
| .sidebar-link.active { font-weight: 600; color: var(--text); }
| |
| .sidebar-divider {
| |
| border: none;
| |
| border-top: 1px solid var(--border-light);
| |
| margin: 8px 0;
| |
| }
| |
| | |
| /* ─── MAIN CONTENT ─── */
| |
| #content {
| |
| flex: 1;
| |
| padding: 20px 28px 40px;
| |
| background: var(--surface);
| |
| min-width: 0;
| |
| }
| |
| | |
| /* ─── PAGE TITLE ─── */
| |
| #page-title {
| |
| font-family: 'Linux Libertine O', Georgia, serif;
| |
| font-size: 28px;
| |
| font-weight: 400;
| |
| border-bottom: 1px solid var(--border);
| |
| padding-bottom: 4px;
| |
| margin-bottom: 16px;
| |
| line-height: 1.3;
| |
| }
| |
| #page-title .namespace { font-size: 18px; color: var(--text-muted); }
| |
| | |
| /* ─── BREADCRUMB ─── */
| |
| .breadcrumb {
| |
| font-size: 12.5px;
| |
| margin-bottom: 12px;
| |
| color: var(--text-muted);
| |
| }
| |
| .breadcrumb a { color: var(--link); text-decoration: none; }
| |
| .breadcrumb a:hover { text-decoration: underline; }
| |
| | |
| /* ─── INFOBOX ─── */
| |
| .infobox {
| |
| float: right;
| |
| clear: right;
| |
| margin: 0 0 20px 24px;
| |
| border: 1px solid var(--infobox-border);
| |
| background: #f8f9fa;
| |
| font-size: 13px;
| |
| width: 280px;
| |
| }
| |
| .infobox-title {
| |
| background: #cee0f2;
| |
| font-weight: 700;
| |
| font-size: 13px;
| |
| padding: 8px 12px;
| |
| text-align: center;
| |
| border-bottom: 1px solid var(--border);
| |
| }
| |
| .infobox-table { width: 100%; border-collapse: collapse; }
| |
| .infobox-table tr td {
| |
| padding: 5px 12px;
| |
| vertical-align: top;
| |
| border-bottom: 1px solid var(--border-light);
| |
| }
| |
| .infobox-table tr td:first-child {
| |
| font-weight: 600;
| |
| width: 45%;
| |
| color: var(--text-muted);
| |
| }
| |
| .infobox-table tr:last-child td { border-bottom: none; }
| |
| .status-badge {
| |
| display: inline-block;
| |
| background: var(--tag-announced);
| |
| border: 1px solid var(--tag-announced-border);
| |
| color: var(--tag-announced-text);
| |
| border-radius: 3px;
| |
| padding: 1px 7px;
| |
| font-size: 12px;
| |
| font-weight: 600;
| |
| }
| |
| | |
| /* ─── TOC ─── */
| |
| .toc {
| |
| border: 1px solid var(--border);
| |
| background: #f8f9fa;
| |
| padding: 12px 16px;
| |
| display: inline-block;
| |
| min-width: 220px;
| |
| max-width: 340px;
| |
| margin: 0 0 20px 0;
| |
| font-size: 13px;
| |
| }
| |
| .toc-title { font-weight: 700; font-size: 13px; margin-bottom: 6px; }
| |
| .toc ol { padding-left: 18px; }
| |
| .toc li { margin: 2px 0; }
| |
| .toc a { color: var(--link); text-decoration: none; }
| |
| .toc a:hover { text-decoration: underline; }
| |
| .toc .toc-sub { padding-left: 16px; }
| |
| | |
| /* ─── HEADINGS ─── */
| |
| h2.section-title {
| |
| font-family: 'Linux Libertine O', Georgia, serif;
| |
| font-size: 22px;
| |
| font-weight: 400;
| |
| border-bottom: 1px solid var(--border);
| |
| padding-bottom: 3px;
| |
| margin: 28px 0 14px;
| |
| }
| |
| h3.subsection-title {
| |
| font-size: 16px;
| |
| font-weight: 700;
| |
| margin: 20px 0 10px;
| |
| }
| |
| | |
| p { margin-bottom: 12px; }
| |
| a { color: var(--link); text-decoration: none; }
| |
| a:hover { text-decoration: underline; }
| |
| | |
| /* ─── TABLE ─── */
| |
| .wiki-table {
| |
| border-collapse: collapse;
| |
| width: 100%;
| |
| font-size: 13px;
| |
| margin-bottom: 16px;
| |
| }
| |
| .wiki-table th {
| |
| background: var(--table-header);
| |
| border: 1px solid var(--border);
| |
| padding: 7px 12px;
| |
| text-align: left;
| |
| font-weight: 700;
| |
| }
| |
| .wiki-table td {
| |
| border: 1px solid var(--border);
| |
| padding: 7px 12px;
| |
| vertical-align: top;
| |
| }
| |
| .wiki-table tr:nth-child(even) td { background: #f8f9fa; }
| |
| | |
| /* ─── NOTICE BOX ─── */
| |
| .notice-box {
| |
| border: 1px solid var(--warning-border);
| |
| background: var(--warning-bg);
| |
| padding: 10px 14px;
| |
| margin-bottom: 16px;
| |
| font-size: 13px;
| |
| border-radius: 2px;
| |
| }
| |
| .notice-box strong { color: #664d00; }
| |
| | |
| /* ─── EXPERT QUOTE ─── */
| |
| .expert-quote {
| |
| border-left: 3px solid var(--accent);
| |
| margin: 14px 0;
| |
| padding: 8px 14px;
| |
| background: #f0f4fb;
| |
| font-style: italic;
| |
| font-size: 13.5px;
| |
| }
| |
| .expert-quote .attribution {
| |
| margin-top: 6px;
| |
| font-style: normal;
| |
| font-weight: 600;
| |
| font-size: 12.5px;
| |
| color: var(--text-muted);
| |
| }
| |
| | |
| /* ─── BACKLINKS ─── */
| |
| .backlinks {
| |
| margin-top: 30px;
| |
| padding-top: 14px;
| |
| border-top: 1px solid var(--border);
| |
| font-size: 13px;
| |
| }
| |
| .backlinks ul { list-style: disc; padding-left: 20px; margin-top: 6px; }
| |
| .backlinks li { margin: 4px 0; }
| |
| | |
| /* ─── FOOTER ─── */
| |
| #page-footer {
| |
| border-top: 1px solid var(--border);
| |
| padding: 12px 20px;
| |
| font-size: 12px;
| |
| color: var(--text-muted);
| |
| display: flex;
| |
| justify-content: space-between;
| |
| flex-wrap: wrap;
| |
| gap: 8px;
| |
| background: var(--surface);
| |
| max-width: 1200px;
| |
| margin: 0 auto;
| |
| }
| |
| #page-footer a { color: var(--link); }
| |
| | |
| .clearfix::after { content: ''; display: table; clear: both; }
| |
| | |
| @media (max-width: 768px) {
| |
| #sidebar { display: none; }
| |
| .infobox { float: none; width: 100%; margin: 0 0 16px 0; }
| |
| #content { padding: 16px; }
| |
| }
| |
| </style>
| |
| </head>
| |
| <body>
| |
| | |
| <!-- TOP BAR -->
| |
| <div id="top-bar">
| |
| <a class="site-name" href="#">Observatorio <span>Kast</span></a>
| |
| <div class="top-links">
| |
| <a href="#">Página principal</a>
| |
| <a href="#">Cambios recientes</a>
| |
| <a href="#">Crear cuenta</a>
| |
| <a href="#">Acceder</a>
| |
| </div>
| |
| </div>
| |
| | |
| <!-- TABS -->
| |
| <div id="tabs-bar">
| |
| <a class="tab active" href="#">Página</a>
| |
| <a class="tab" href="#">Discusión</a>
| |
| <a class="tab" href="#">Ver código fuente</a>
| |
| <a class="tab" href="#">Ver historial</a>
| |
| </div>
| |
| | |
| <!-- LAYOUT -->
| |
| <div id="layout"> | |
| | |
| <!-- SIDEBAR -->
| |
| <nav id="sidebar">
| |
| <div class="sidebar-section">
| |
| <div class="sidebar-title">Navegación</div>
| |
| <a class="sidebar-link" href="#">Página principal</a>
| |
| <a class="sidebar-link" href="#">Cambios recientes</a>
| |
| <a class="sidebar-link" href="#">Página aleatoria</a>
| |
| </div>
| |
| <hr class="sidebar-divider" />
| |
| <div class="sidebar-section">
| |
| <div class="sidebar-title">Observatorio</div>
| |
| <a class="sidebar-link" href="#">Observatorio Parlamentario</a>
| |
| <a class="sidebar-link active" href="#">Reforma Tributaria</a>
| |
| <a class="sidebar-link" href="#">Plan de Reconstrucción</a>
| |
| </div>
| |
| <hr class="sidebar-divider" />
| |
| <div class="sidebar-section">
| |
| <div class="sidebar-title">Herramientas</div>
| |
| <a class="sidebar-link" href="#">Lo que enlaza aquí</a>
| |
| <a class="sidebar-link" href="#">Páginas especiales</a>
| |
| <a class="sidebar-link" href="#">Versión para imprimir</a>
| |
| <a class="sidebar-link" href="#">Enlace permanente</a>
| |
| </div>
| |
| <hr class="sidebar-divider" />
| |
| <div class="sidebar-section">
| |
| <div class="sidebar-title">Acerca de</div>
| |
| <a class="sidebar-link" href="#">Acerca del Observatorio</a>
| |
| <a class="sidebar-link" href="#">Política de privacidad</a>
| |
| <a class="sidebar-link" href="#">Descargos</a>
| |
| </div>
| |
| </nav>
| |
| | |
| <!-- MAIN CONTENT -->
| |
| <main id="content">
| |
| <div class="breadcrumb">
| |
| <a href="#">Observatorio Kast</a> ›
| |
| <a href="#">Observatorio Parlamentario</a> ›
| |
| Proyecto: Rebaja transitoria del impuesto a las donaciones y herencias
| |
| </div>
| |
| | |
| <h1 id="page-title">
| |
| <span class="namespace">Observatorio Parlamentario / </span><br> | |
| Proyecto: Rebaja transitoria del impuesto a las donaciones y herencias | | Proyecto: Rebaja transitoria del impuesto a las donaciones y herencias |
| </h1> | | </h1> |
| Línea 439: |
Línea 56: |
|
| |
|
| <h2 class="section-title" id="tramitacion">Tramitación</h2> | | <h2 class="section-title" id="tramitacion">Tramitación</h2> |
| | | |
| <table class="wiki-table"> | | <thead> |
| <thead>
| | |
| <tr>
| | <nowiki></thead></nowiki> |
| | <nowiki><tbody></nowiki> |
| | |
| | <nowiki></tbody></nowiki> |
| | <table class="wiki-table"><tr> |
| <th>Etapa</th> | | <th>Etapa</th> |
| <th>Fecha</th> | | <th>Fecha</th> |
| <th>Descripción</th> | | <th>Descripción</th> |
| </tr> | | </tr><tr> |
| </thead>
| |
| <tbody>
| |
| <tr>
| |
| <td>Anuncio</td> | | <td>Anuncio</td> |
| <td>Marzo 2026</td> | | <td>Marzo 2026</td> |
| Línea 473: |
Línea 91: |
| <td>Por definir</td> | | <td>Por definir</td> |
| <td>—</td> | | <td>—</td> |
| </tr> | | </tr></table> |
| </tbody>
| |
| </table>
| |
|
| |
|
| <h2 class="section-title" id="antecedentes">Antecedentes técnicos</h2> | | <h2 class="section-title" id="antecedentes">Antecedentes técnicos</h2> |