Herramientas de usuario

Herramientas del sitio


tutoriales:comunicaciones

Diferencias

Muestra las diferencias entre dos versiones de la página.

Enlace a la vista de comparación

Ambos lados, revisión anteriorRevisión previa
Próxima revisión
Revisión previa
tutoriales:comunicaciones [2026/05/12 16:47] jesustutoriales:comunicaciones [2026/05/12 16:53] (actual) jesus
Línea 1: Línea 1:
 ~~NOTOC~~ ~~NOTOC~~
  
-====== COMUNICACIONES ====== +~~NOTOC~~
- +
----- +
 <html> <html>
 <style> <style>
-  /* --- 1. ÍNDICE DE NAVEGACIÓN --- */ +  /* --- MOTOR VISUAL RETRO CRT --- */ 
-  .abecedario-nav +  .pcw-monitor-ultra 
-    display: flex; flex-directionrowjustify-contentspace-between; align-items: center+    background-color#000b00 
-    background-color#000; padding: 10px 5px; border: 2px solid #00ff00+    border12px solid #2a2a2a;  
-    margin: 20px 0; width100%box-sizingborder-box; overflow-xautowhite-spacenowrap;+    border-radius15px; 
 +    padding: 25px
 +    margin: 25px 0; 
 +    font-family'Courier New', Courier, monospace; 
 +    positionrelative; 
 +    overflow: hidden; 
 +    box-shadowinset 0 0 60px rgba(0,255,0,0.15), 0 10px 30px rgba(0,0,0,0.7);
   }   }
-  .abecedario-nav img { width32px; height32px; margin0 5pxflex-shrink0+ 
-  .abecedario-nav a { +  /* Capa de scanlines y parpadeo */ 
-    flex1displayflexalign-itemscenterjustify-contentcenter+  .pcw-monitor-ultra::after { 
-    min-width25px; height: 35px; color: #00ff00 !important+    content" "; 
-    text-decorationnone !important; font-family: 'Courier New'monospace+    positionabsolute
-    font-weightboldfont-size14pxtransition: 0.2s;+    top0left0bottom0right0
 +    backgroundlinear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%),  
 +                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03))
 +    background-size100% 3px2px 100%
 +    z-index2; 
 +    pointer-eventsnone; 
 +    animationflickering 0.15s infinite;
   }   }
-  .abecedario-nav a:hover { background-color: #00ff00; color: #000 !important; } 
  
-  /* --- 2. TÍTULOS --- */ +  @keyframes flickering { 0% { opacity: 0.98; } 100% { opacity: 1; } } 
-  .abecedario-titulo + 
-    color: #00ff00; background-color: #000; border-bottom: 2px solid #00ff00+  /* Estilo de Texto Retro (Glow Verde) */ 
-    font-family: 'Courier New', monospace; font-size2.2em+  .retro-text 
-    margin50px 0 20px 0padding-left15px; display: block+    color: #00ff00 !important
-    scroll-margin-top20px;+    font-family: 'Courier New', Courier, monospace; 
 +    text-shadow0 0 10px rgba(0, 255, 0, 0.7), 0 0 2px rgba(0, 255, 0, 0.8)
 +    text-transformuppercase; 
 +    letter-spacing1px
 +    text-decorationnone !important;
   }   }
  
-  /* --- 3REJILLA --- */ +  .pcw-title-ultra 
-  .letra-seccion +    font-size1.6em
-    display: grid; grid-template-columnsrepeat(4, 1fr);  +    font-weightbold; 
-    gap: 30px; padding: 20px; justify-itemscenter; margin-bottom: 50px;+    margin-bottom: 25px; 
 +    display: block;
   }   }
  
-  /* --- 4MARCO CONTENEDOR (SIN IMAGEN) --- */ +  .pcw-title-ultra::after { 
-  .book-container-mini { +    content"_"
-    height200px; width200px; position: relative;  +    animationcursor-blink 1s infinite;
-    background-color#000; border: 8px solid #2a2a2a+
-    padding15px; box-sizing: border-box; +
-    box-shadow: 0 5px 15px rgba(0,0,0,0.6); +
-    display: flex; align-items: center; justify-content: center; text-align: center;+
   }   }
-  .book-link {  + 
-    color#00ff00 !important;  +  @keyframes cursor-blink { 0%, 100% { opacity: 0; } 50% { opacity: 1; } } 
-    text-decorationnone !important;  + 
-    font-family'Courier New', monospace;+  /* Rejilla de una sola columna para listado vertical */ 
 +  .pcw-grid-vertical 
 +    displaygrid
 +    gap: 10px; 
 +    grid-template-columns1fr;  
 +    position: relative; 
 +    z-index3; 
 +  } 
 + 
 +  .pcw-btn-ultra { 
 +    display: flex; 
 +    align-items: center; 
 +    justify-content: flex-start; 
 +    background: transparent; 
 +    padding: 8px 5px; 
 +    border: 1px solid transparent;
     font-weight: bold;     font-weight: bold;
-    font-size: 14px+    font-size: 1em
-    line-height1.2;+    transition0.2s;
   }   }
  
-  /* --- 5. BANDERAS --- */ +  /* Efecto de Selección: Puntero y Desplazamiento */ 
-  .corner-flag-mini +  .pcw-btn-ultra:hover 
-    position: absolute; width: 28px; height: 20px; z-index10+    background-colorrgba(0, 255, 0, 0.15)
-    border: 1px solid #fffbox-sizing: border-box; pointer-eventsnone;+    border: 1px solid rgba(0, 255, 0, 0.5); 
 +    transformtranslateX(12px);
   }   }
-  .t-l { top: -10px; left: -10px; } .t-r { top: -10px; right: -10px; }  
-  .b-l { bottom: -10px; left: -10px; } .b-r { bottom: -10px; right: -10px; } 
  
-  @media (max-width: 900px) { .letra-seccion { grid-template-columnsrepeat(2, 1fr)} } +  .pcw-btn-ultra::before { 
-  @media (max-width450px) { .letra-seccion { grid-template-columns1fr; } +    content: "> "
-</style>+    opacity0.4; 
 +    margin-right10px; 
 +  }
  
-<!-- ÍNDICE SUPERIOR COMPLETO --> +  .pcw-btn-ultra:hover::before { 
-<div class="abecedario-nav"> +    opacity1; 
-  <img src="/lib/exe/fetch.php?media=botones:mundo.png"> +  } 
-  <a href="#A">A</a><a href="#B">B</a><a href="#C">C</a><a href="#D">D</a> +</style>
-  <a href="#E">E</a><a href="#F">F</a><a href="#G">G</a><a href="#H">H</a> +
-  <a href="#I">I</a><a href="#J">J</a><a href="#K">K</a><a href="#L">L</a> +
-  <a href="#M">M</a><a href="#N">N</a><a href="#O">O</a><a href="#P">P</a> +
-  <a href="#Q">Q</a><a href="#R">R</a><a href="#S">S</a><a href="#T">T</a> +
-  <a href="#U">U</a><a href="#V">V</a><a href="#W">W</a><a href="#X">X</a> +
-  <a href="#Y">Y</a><a href="#Z">Z</a> +
-  <img src="/lib/exe/fetch.php?media=botones:mundo.png"> +
-</div>+
  
-<!-- ================= SECCIÓN T ================= --> +<!-- SECCIÓN COMUNICACIONES --> 
-<div id="T" class="abecedario-titulo">T</div> +<div class="pcw-monitor-ultra"> 
-<div class="letra-seccion"> +  <div class="pcw-title-ultra retro-text"> A> COMUNICACIONES </div
-  <div class="book-container-mini"> +  <div class="pcw-grid-vertical"> 
-    <img src="/lib/exe/fetch.php?media=botones:espana.jpg" class="corner-flag-mini t-l"+     
-    <img src="/lib/exe/fetch.php?media=botones:espana.jpg" class="corner-flag-mini t-r"> +    <!-- Listado Adaptado --> 
-    <img src="/lib/exe/fetch.php?media=botones:espana.jpg" class="corner-flag-mini b-l"> +    <a href="doku.php?id=:hardware:comunicaciones:transferir_ficheros_de_pcw_a_pc" class="pcw-btn-ultra retro-text"> 
-    <img src="/lib/exe/fetch.php?media=botones:espana.jpg" class="corner-flag-mini b-r"+      Transferir ficheros de PCW PC en formato ASCII estándar 
-    <a href="doku.php?id=es:hardware:hardware:comunicaciones:transferir_ficheros_de_pcw_a_pc" class="book-link"> +
-      TRANSFERIR FICHEROS DE PCW PC+
     </a>     </a>
 +
   </div>   </div>
 </div> </div>
- 
 </html> </html>
- 
-  * [[es:hardware:hardware:comunicaciones:transferir_ficheros_de_pcw_a_pc|Transferir ficheros de PCW a PC en formato ASCII estándar]] 
  
tutoriales/comunicaciones.1778604472.txt.gz · Última modificación: por jesus