Post

Replies

Boosts

Views

Activity

Reply to Updated HTML and Javascript in HTML
Click Me .button{ position: relative; background-color: black; border-radius: 4em; font-size: 16px; color: white; padding: 0.8em 1.8em; cursor:pointer; user-select:none; text-align: center; text-decoration: none; cursor: pointer; transition-duration: 0.4s; -webkit-transition-duration: 0.4s; /* Safari */ } button:hover { transition-duration: 0.1s; background-color: #3A3A3A; } .button:after { content: ""; display: block; position: absolute; border-radius: 4em; left: 0; top:0; width: 100%; height: 100%; opacity: 0; transition: all 0.5s; box-shadow: 0 0 10px 40px white; } .button:active:after { box-shadow: ‪0 0 0 0‬ white; position: absolute; border-radius: 4em; left: 0; top:0; opacity: 1; transition: 0s; } .button:active { top: 1px; } .button { text-align: center; text-transform: uppercase; cursor: pointer; font-size: 20px; letter-spacing: 4px; position: relative; background-color: #16a085; border: none; color: #fff; padding: 20px; width: 200px; text-align: center; transition-duration: 0.4s; overflow: hidden; box-shadow: 0 5px 15px #193047; border-radius: 4px; } .button:hover { background: #fff; box-shadow: 0px 2px 10px 5px #1abc9c; color: #000; } .button:after { content: ""; background: #1abc9c; display: block; position: absolute; padding-top: 300%; padding-left: 350%; margin-left: -20px !important; margin-top: -120%; opacity: 0; transition: all 0.8s } .button:active:after { padding: 0; margin: 0; opacity: 1; transition: 0s } .button:focus { outline:0; } body{ background: #d4ffe4;                          height: 100vh;                          display: flex;                          justify-content: center;                          align-items: center;                          } i{ color:red; } $('.clk a').click(function(){ $(this).find('i').toggleClass('fa-plus-circle fa-minus-circle') }); 𝄞 document.getElementById("color2").style.color = "blue";
Topic: Safari & Web SubTopic: General Tags:
Jun ’25
Reply to Updated HTML and Javascript in HTML
Ok try this I let me know how it goes .modal-content { background-color: #fefefe; margin: 15% auto; /* 15% from the top and centered */ padding: 20px; border: 1px solid #888; width: 80%; /* Could be more or less, depending on screen size */ max-width: 500px; /* Optional: max width */ position: relative; } .close-button { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; } Open Modal Open Modal2 Open Modal3 × Modal Title This is the content of the modal window. <script> const txt = document.getElementById("txt"); const modal = document.getElementById("myModal"); const openBtn = document.getElementById("openModalBtn"); const openBtn2 = document.getElementById("openModalBtn2"); const openBtn3 = document.getElementById("openModalBtn3"); const closeBtn = document.querySelector(".close-button"); openBtn.onclick = function() { modal.style.display = "block"; txt.innerHTML = openBtn.innerHTML; } openBtn2.onclick = function() { modal.style.display = "block"; txt.innerHTML = openBtn2.innerHTML; } openBtn3.onclick = function() { modal.style.display = "block"; txt.innerHTML = openBtn3.innerHTML; } closeBtn.onclick = function() { modal.style.display = "none"; } window.onclick = function(event) { if (event.target == modal) { modal.style.display = "none"; } } </script> </body> </html> ≠=========) Text to Copy ola Click Me! <!--div id="textToCopy">This is the text to be copied. Copy Text <button id="buttonToCopy">Content to Copy</button> Click Me
Topic: Safari & Web SubTopic: General Tags:
Jun ’25
Reply to Updated HTML and Javascript in HTML
/* The Modal (background) / .modal { display: none; / Hidden by default / position: fixed; / Stay in place / z-index: 1; / Sit on top / left: 0; top: 0; width: 100%; / Full width / height: 100%; / Full height / overflow: auto; / Enable scroll if needed / background-color: rgb(0,0,0); / Fallback color / background-color: rgba(0,0,0,0.4); / Black w/ opacity / -webkit-animation-name: fadeIn; / Fade in the background */ -webkit-animation-duration: 0.4s; animation-name: fadeIn; animation-duration: 0.4s } /* Modal Content */ .modal-content { position: fixed; margin: 10px 12px; top: 0; background-color: #fefefe; width: 98%; -webkit-animation-name: slideIn; -webkit-animation-duration: 0.4s; animation-name: slideIn; animation-duration: 0.4s } /* The Close Button */ .close { color: rgb(182, 182, 182); float: right; font-size: 50px; font-weight: bold; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; } .modal-header { margin: 10px; padding: 2px 12px; background-color: #021d46; color: white; } .modal-body {padding: 2px 16px;} .modal-footer { margin: 10px; padding: 2px 16px; background-color: #021d46; color: white; } /* Add Animation */ @-webkit-keyframes slideIn { from {bottom: -300px; opacity: 0} to {bottom: 0; opacity: 1} } @keyframes slideIn { from {bottom: -300px; opacity: 0} to {bottom: 0; opacity: 1} } @-webkit-keyframes fadeIn { from {opacity: 0} to {opacity: 1} } @keyframes fadeIn { from {opacity: 0} to {opacity: 1} } Open Modal
Topic: Safari & Web SubTopic: General Tags:
Jun ’25
Reply to Updated HTML and Javascript in HTML
To include a link inside the button or div just use this code const div = document.getElementById('miDiv'); const url = 'https://www.ejemplo.com'; // Metodo 1: Usando innerHTML // div.innerHTML += <a href="${url}">Enlace a ejemplo.com</a>; // Metodo 2: Creando el elemento a let myButton = document.createElement('button'); myButton.textContent = 'Click Me'; document.body.appendChild(myButton); const a = document.createElement('a'); a.href = url; a.textContent = 'Enlace a ejemplo.com'; myButton.appendChild(a); Try this $ tr ';' ',' < /ruta/puntocoma.csv > /ruta/coma.csv sed 's/,/;/g' archivo.csv > archivo nuevo.csv.
Topic: Safari & Web SubTopic: General Tags:
Jun ’25
Reply to Updated HTML and Javascript in HTML
I think it should work. A way to read the columns separately .btn-primary { color: #fff; background-color: #0275d8; border-color: #0275d8; } .btn { display: inline-block; font-weight: 400; line-height: 1.25; text-align: center; white-space: nowrap; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; border: 1px solid transparent; padding: .5rem 1rem; font-size: 1rem; border-radius: .25rem; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } label { display: inline-block; margin-bottom: .5rem; } //181b1d btn primary background-color: 37474F; .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle { color: #fff; background-color: #025aa5; background-image: none; border-color: #01549b; } .btn-primary.focus, .btn-primary:focus { -webkit-box-shadow: ‪0 0 0 2‬px rgba(2, 117, 216, .5); box-shadow: ‪0 0 0 2‬px rgba(2, 117, 216, .5); } .btn-primary:hover { color: #fff; background-color: #025aa5; border-color: #01549b; } btn.active, .btn:active { background-image: none; } .btn.focus, .btn:focus { outline: 0; -webkit-box-shadow: ‪0 0 0 2‬px rgba(2, 117, 216, .25); box-shadow: ‪0 0 0 2‬px rgba(2, 117, 216, .25); } .btn:focus, .btn:hover { text-decoration: none; } <input type="file" id="csvFile" accept=".csv"> AnotherNaV .mdl-layout-sub-title{       padding-left:40px;       font-weight: bold; } /* HEADER */ header.mdl-layout__header{       background: #232f34;       color: #fff; } .mdl-layout__header-row .mdl-navigation__link{       opacity: 0.75;       transition-duration: 0.3s; } .mdl-layout__header-row .mdl-navigation__link:hover{       opacity: 1;       transition-duration: 0.3s; } .mdl-layout__header-row .mdl-navigation__link.current{       opacity: 1;       font-weight: bold; } .mdl-layout__header-row .mdl-navigation__link, .mdl-layout__drawer-button{       color: gray; } i.search{       margin-left: 24px;             cursor: pointer; } i.cart{       margin-left: 24px;        cursor: pointer;        font-size: 20px} .mdl-layout__drawer nav {       border-bottom:1px solid #ddd;        }
Topic: Safari & Web SubTopic: General Tags:
Jun ’25
Reply to Updated HTML and Javascript in HTML
I suggest you try material design for buttons and menu, like this... input { height: 48px; width: 280px; border: 1px solid #c0c0c0; border-radius: 4px; box-sizing: border-box; padding: 16px; } .label { position: absolute; top: 0; bottom: 0; left: 16px; display: flex; align-items: center; pointer-events: none; } input, .label .text { font-family: 'Segoe UI'; font-size: 16px; } .label .text { transition: all 0.15s ease-out; color: grey; } input:focus { outline: none; border: 2px solid blue; } input:focus + .label .text, :not(input[value=""]) + .label .text { font-size: 12px; transform: translate(0, -150%); background-color: white; padding-left: 4px; padding-right: 4px; } input:focus + .label .text { color: blue; } const input = document.getElementById('fname'); input.addEventListener('input', () => { input.setAttribute('value', input.value); }); Btn1 Button .pure-material-button-contained { position: relative; display: inline-block; box-sizing: border-box; border: none; border-radius: 4px; padding: 0 16px; min-width: 64px; height: 36px; vertical-align: middle; text-align: center; text-overflow: ellipsis; text-transform: uppercase; color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255)); background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243)); box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system); font-size: 14px; font-weight: 500; line-height: 36px; overflow: hidden; outline: none; cursor: pointer; transition: box-shadow 0.2s; } .pure-material-button-contained::-moz-focus-inner { border: none; } /* Overlay */ .pure-material-button-contained::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255)); opacity: 0; transition: opacity 0.2s; } /* Ripple / .pure-material-button-contained::after { content: ""; position: absolute; left: 50%; top: 50%; border-radius: 50%; padding: 50%; width: 32px; / Safari / height: 32px; / Safari */ background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255)); opacity: 0; transform: translate(-50%, -50%) scale(1); transition: opacity 1s, transform 0.5s; } Hover, Focus */ .pure-material-button-contained:hover, .pure-material-button-contained:focus { box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); } .pure-material-button-contained:hover::before { opacity: 0.08; } .pure-material-button-contained:focus::before { opacity: 0.24; } pure-material-button-contained:hover:focus::before { opacity: 0.3; } /* Active */ .pure-material-button-contained:active { box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); } .pure-material-button-contained:active::after { opacity: 0.32; transform: translate(-50%, -50%) scale(0); transition: transform 0s; } /* Disabled */ .pure-material-button-contained:disabled { color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38); background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12); box-shadow: none; cursor: initial; } pure-material-button-contained:disabled::before { opacity: 0; } .pure-material-button-contained:disabled::after { opacity: 0; } Fond { margin: 0 auto; } h1{ color:green; } h2{ color:RED; } #cbar { width: 150%; height: 250px; background-color: rgb(67, 71, 97); position: absolute; z-index: -2; top: 0; } #nvbar { height: 60px; width: auto; background-color: rgb(58, 58, 66); } #content { width: 65%; height: 500px; z-index: 3; background-color: #ddd; margin-top: 80px; box-shadow: 1px 1px 1px 1px #ccc; } Nav { box-sizing: border-box; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; -webkit-user-select: none; /* Chrome & Safari / -moz-user-select: none; / Firefox / -ms-user-select: none; / IE 10+ */ user-select: none; } html, body { margin: 0; padding: 0; cursor: default; } :root { --theme-color: #263238; --accent-color: #ffffff; --theme-text: #FFF; background-color: #ffffff; color: #000; font-family: 'Roboto', sans-serif; } .nav-header { --nav-button-padding: 7px; background-color: var(--theme-color, #333); color: var(--theme-text, #FFF); width: 100%; height: 64px; padding: 12px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); font-size: 18px; position: fixed; display: flex; flex-direction: row; align-items: center; overflow: hidden; } .nav-header__left-align { flex: 1; } .nav-header__menu-show { margin-right: 12px; } .nav-header__title { padding-right: 8px; } .nav-header__side-button { margin-left: var(--nav-button-padding, 12px); } .nav-button { padding: var(--nav-button-padding, 12px); height: 100%; } @media screen and (max-width: 480px) { .nav-header__title { display: none; } } .button-light:hover { background-color: rgba(22, 49, 77, 0.14); } .button-light:active, .button-light:focus { background-color: rgba(255, 255, 255, 0.14); } .button-light:focus { outline: 1px solid #FFF; } .button-dark:hover, .button-dark:active, .button-dark:focus { background-color: rgba(0, 0, 0, 0.07); } Upload Upload File body { padding: 10px; } $(document).ready(onLoad); function onLoad() { $('label').on('keydown', onKeyDown); } function onKeyDown(e) { const enterKey = 13; const spaceKey = 32; if (e.keyCode === enterKey || e.keyCode === spaceKey) { $('#upload').click(); } }
Topic: Safari & Web SubTopic: General Tags:
Jun ’25
Reply to Updated HTML and Javascript in HTML
function processCSV(csv) { const lines = csv.split('\n'); let tableHTML = ''; for (const line of lines) { const values = line.split(','); tableHTML += ''; for (const value of values) { tableHTML += <td>${value}</td>; } tableHTML += ''; } tableHTML += ''; document.getElementById('output').innerHTML = tableHTML; const tabla = document.querySelector('#tabla'); const lista = document.querySelector('.lista ul'); const rows = tabla.querySelectorAll('tr'); //var lv = document.getElementById("tabla").rows[0].cells[0].innerHTML; //document.getElementById("ola").innerHTML = lv; let html = ""; rows.forEach(row => { const cellText = row.querySelector('td').textContent.trim(); if (cellText) { html += `<li>"" + ${cellText} + "ola"</li>`; } }); if (html) { lista.innerHTML = html; } else { lista.innerHTML = "<li>No hay datos en la tabla para mostrar</li>"; } }
Topic: Safari & Web SubTopic: General Tags:
Jun ’25
Reply to Updated HTML and Javascript in HTML
Please try this and let me know DOCTYPE html> //const link = this.querySelector('a'); -only selector a- const link = this; const range = document.createRange(); range.selectNode(link); const selection = window.getSelection(); selection.removeAllRanges(); selection.addRange(range); const successful = document.execCommand('copy'); Pass.value = this.value; navigator.clipboard.write([clipboardItem]); this.style.borderColor = "blue"; } botones.forEach(boton => { boton.addEventListener("click", cuandoSeHaceClick); }); </script>
Topic: Safari & Web SubTopic: General Tags:
Jan ’25
Reply to Updated HTML and Javascript in HTML
I recommend you try with this code to get both the link and text copied to clipboard and let me know the results const onClick = evt => { let text = "Text to be converted to a link."; let url = "hola puede ir a https://google.com" + "\n\n" + "https://www.apple.com"; let element = document.getElementById("my-element"); element.innerHTML = `<a href="${url}">${text}</a>`; let varName = document.getElementById("links").value; content.innerHTML = varName; element.innerHTML = varName + url; navigator.clipboard.writeText(element.innerHTML); } document.querySelector('#links').addEventListener('click', onClick);
Topic: Safari & Web SubTopic: General Tags:
Jan ’25
Reply to Updated HTML and Javascript in HTML
const onClick = evt => { const link = document.querySelector('a'); const range = document.createRange(); range.selectNode(link); const selection = window.getSelection(); selection.removeAllRanges(); selection.addRange(range); const successful = document.execCommand('copy'); }; document.querySelector('button').addEventListener('click', onClick); This is an Example. Copy
Topic: Safari & Web SubTopic: General Tags:
Dec ’24
Reply to Updated HTML and Javascript in HTML
Please look this...some CSS that fix these issues: background-color: #515151; color:#ffffff; font-size: 15px; vertical-align: middle; padding: 8px;logo 3foll "padding: 5px; background-color: #6d7988; border: 1px solid #515151; color: #ffffff; cursor: pointer; font-size: 18px; box-shadow: 0 1px 1px -1px rgb(255 255 255 / 90%) inset, 0 40px 20px -20px rgb(255 255 255 / 15%) inset, 0 -1px 1px -1px rgb(0 0 0 / 70%) inset, 0 -40px 20px -20px rgb(0 0 0 / 6%) inset, 0 9px 8px -4px rgb(0 0 0 / 40%), 0 2px 1px -1px rgb(0 0 0 / 30%), 7px 7px 8px -4px rgb(0 0 0 / 10%), -7px 7px 8px -4px rgb(0 0 0 / 10%), 0 -4px 12px 2px rgb(31 84 245 / 20%);"> style="padding: 4px; color: #ffffff; font-size: 12px; margin-left:10px" elip 9foll style="padding: 8px;"><button class="botonMenu" style="margin-right: -12px; outline: none; border: 1px solid #0939c8; color: white; font-size: 15px; height: auto; cursor: pointer; background-color: #2f3030; box-shadow: 0 1px 1px -1px rgb(255 255 255 / 90%) inset, 0 40px 20px -20px rgb(255 255 255 / 15%) inset, 0 -1px 1px -1px rgb(0 0 0 / 70%) inset, 0 -40px 20px -20px rgb(0 0 0 / 6%) inset, 0 9px 8px -4px rgb(0 0 0 / 40%), 0 2px 1px -1px rgb(0 0 0 / 30%), 7px 7px 8px -4px rgb(0 0 0 / 10%), -7px 7px 8px -4px rgb(0 0 0 / 10%), 0 -4px 12px 2px rgb(31 84 245 / 20%);" onmouseover="this.style.color='blue'; this.style.fontSize='17px'" onmouseout="this.style.color='white'; this.style.fontSize='15px'" if (window.pageYOffset < 350) document.getElementById("btnStack").style.width = "250px"; }); function Read() { navigator.clipboard.readText().then( clipText => document.getElementById("Leer").value = clipText); navigator.clipboard.readText().then( clipText => document.getElementById("Stack").value = clipText + "\n" + "\n" + document.getElementById("Stack").value); navigator.clipboard.readText().then( clipText => document.getElementById("Leer").innerHTML = clipText.substring(0, 12)); } function btnStack() { navigator.clipboard.readText().then( clipText => document.getElementById("Stack").value = clipText + "\n" + "\n" + document.getElementById("Stack").value); } 25%...margin-right: -12px; outline: none; border: 1px solid #0939c8; height: auto; cursor: pointer; background-color: #2f3030...box shadow onclick 75%... same
Topic: Safari & Web SubTopic: General Tags:
Apr ’24
Reply to Updated HTML and Javascript in HTML
This is the other part. It seems it is not working with embedded css <button id="btnStack" class="botonMenu" style="color: #18274e; background-color: #515151; width: 250px; height: 50px; font-size: 20px;" onmouseover="this.style.backgroundColor='#FFF';" onmouseout="this.style.backgroundColor='#515151';" onclick="btnStack()"> </div> <textarea type="text" id="Stack" value="" style="height: 1000px; width: 250px; background-color: rgb(71, 71, 51); color: #FFF; border:2px solid #aaa; border-radius:4px; margin:40px 0 0 0; outline:none; padding:8px; box-sizing:border-box; transition:.3s; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 12px;"> </div> <div id="Panel" style="float: left; margin: 50px 0px 0px 20px; border-color: #FFF;"> <div> <textarea type="text" id="Pass" value="" style="height: 300px; width: 200px; background-color: rgb(71, 71, 51); color: #FFF; border:2px solid #aaa; border-radius:4px; margin:8px 0; outline:none; padding:8px; box-sizing:border-box; transition:.3s; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 12px;"> <div style="margin-top: -30px; margin-left: 43%;">. <div style="width: 100%; margin-top: -10px; background-color: #2f3030;"> <button id="btnCopiar" class="botonMenu" style="color: #18274e; width:50%; margin-right: -4px; font-size: 20px;" onclick="btnCopiar()"> <button class="botonMenu" style="color: #18274e; width: 50%; font-size: 20px; float: right; margin-right: 1px;" onclick="Max()"> </div> </div> <ul class="mini-menu" style="margin-top: 15px; margin-left: -50px;"> <a href="#" onclick="window.scrollTo(0,0)"> <li style="background-color: #FFF; margin-left: 9px; display: inline; font-size: 16px; align-items: center; list-style: none;"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li style="background-color: #FFF; margin-left: 9px; display: inline; font-size: 16px; align-items: center; list-style: none;">_ </a> </ul> <textarea id="areaLeer" style="display: none;"> </div> </div> <marquee style="color: #1a0d0d; background-color: #E6EBFF; padding: 5px; font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; font-weight: bold; font-size: 24px;" behavior="scroll" direction="left" scrollamount="15" onmouseover="this.stop();" onmouseout="this.start();">Caso Previo - Verificar Cx - Articulo relacionados <div id="tarjetas" style="overflow-y: scroll; overflow-x:hidden; height:500px; float: center; scrollbar-color: #818181 #818181; scrollbar-width: thin;"> <div class="busca" style="background-color: #2f3030; color: white; width: 100%; height: 30px; max-width: 900px; padding: 12px; border: 1px solid #ddd; border-collapse: collapse; margin: 5% auto; font-family: Helvetica;"> <input style="display: block; margin : 0 auto; color: rgb(36, 36, 36); width: 400px; border: 1px solid #DDDDDD; border-radius: 3px; padding: 9px 12px 9px 12px; transition: 1s all ease;" type="text" id="buscador" class="Buscador" placeholder="Buscar..." /> </div> <ul style="margin:0; padding:0; list-style: none;"> <li class="tarjeta" style="background-color: #a5aaad; color: white; border: 2px solid #FFF; padding: 20px;" onmouseover="this.style.borderColor='black';" onmouseout="this.style.borderColor='silver';">IOS 17 - Verificar Cx - Articulo relacionHT202020 </ul> </div> <div id="Externo"> <div class="Uno"> </div> <div class="Dos"> </div> </div>
Topic: Safari & Web SubTopic: General Tags:
Apr ’24
Reply to Updated HTML and Javascript in HTML
Hi apparently it works doing this : please try it <input type="checkbox" id="check" onClick="menuOpcion()"> <header id="header" style="position: fixed; border-bottom: 3px rgba(0,0,0,0.09) inset; background-color: #515151; height: 55px; z-index: 108; width: 100%; margin-top: -30px;"> <nav id="menu_full" style="width: 100%; margin-left: -35px;"> <ul style="display: flex; font-family: sans-serif; font-size: 12px; align-items: center; list-style: none;"> <li id="logoMenu" style="background-color: #515151; color:#ffffff; font-family:cursive; font-size: 15px; vertical-align: middle; padding: 8px;"> <a href="#" onclick="window.scrollTo(0,0)"> <li onclick="Matriz()" style="text-align: center; padding: 5px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 18px;"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li onclick="Casos()" style="text-align: center; padding: 5px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 18px;"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li onclick="" style="text-align: center; padding: 5px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 18px;" onclick="Borrar()"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li onclick="" style="text-align: center; padding: 4px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 12px; background-color: #515151; color: rgb(255, 255, 255); margin-left:10px;"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li style="text-align: center; padding: 8px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 12px; background-color: #515151;"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li style="text-align: center; padding: 8px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 12px; background-color: #515151;"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li style="text-align: center; padding: 8px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 12px; background-color: #515151;">⏲ </a> <a href="#" onclick="window.scrollTo(0,0)"> <li style="text-align: center; padding: 8px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 12px; background-color: #515151;"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li style="text-align: center; padding: 8px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 12px; background-color: #515151;"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li onclick="" style="text-align: center; padding: 4px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 12px; background-color: #515151; color: rgb(255, 255, 255); margin-left:10px"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li style="text-align: center; padding: 8px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 12px; background-color: #515151;">☁ </a> <a href="#" onclick="window.scrollTo(0,0)"> <li style="text-align: center; padding: 8px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 12px; background-color: #515151;"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li style="text-align: center; padding: 8px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 12px; background-color: #515151;"> </a> <a href="#" onclick="window.scrollTo(0,0)"> <li style="text-align: center; padding: 8px; background-color: #6d7988; border: 1px solid #515151; border-radius: 1px; color: #ffffff; cursor: pointer; font-size: 12px; background-color: #515151;">⌚ </a> </ul> </nav> </header> <div id="Top" style="margin-top: 0px; width: 100%; "> <div id="descripcion_caso" style="overflow-y: scroll; overflow-x:hidden; height: 400px; float: left; position: relative; padding-top: 50px; scrollbar-color: #818181 #818181; scrollbar-width: thin;"> <div style="position: fixed; z-index: 1000;">
Topic: Safari & Web SubTopic: General Tags:
Apr ’24