Advertisement
NaughtySquirrel

Untitled

Feb 6th, 2025
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 7.21 KB | None | 0 0
  1. <!doctype html>
  2. <html tabindex="-1" lang="en">
  3.     <head>
  4.         <title>Zebrasquid</title>
  5.         <link rel="stylesheet" href="TaylorWebsite2025.css" />
  6.     </head>
  7.     <style>
  8.     ::focus {
  9.      outline: none !important; /* Disable outline globally */
  10.      box-shadow: none !important; /* Remove shadow effects */
  11.  }
  12.  
  13.  *:focus,
  14.  *:active,
  15.  * {
  16.      outline: none !important; /* Applies to all elements */
  17.      box-shadow: none !important; /* Remove shadow effects */
  18.      transition: none !important; /* Disable all animations */
  19.      -webkit-tap-highlight-color: transparent; /* Disable mobile tap highlights */
  20.  }
  21.  
  22.  /* Specifically target problematic elements */
  23.  .bannerContainer:focus,
  24.  .parentContainer:focus,
  25.  .contentContainer:focus,
  26.  .sidebar:focus,
  27.  nav:focus,
  28.  ul:focus {
  29.      outline: none !important; /* Remove any focus outline */
  30.      box-shadow: none !important; /* Prevent any focus-related shadows */
  31.      user-select: none; /* Disable accidental text selection */
  32.  }
  33.  
  34.  /* Prevent focus for tabindex="-1" */
  35.  [tabindex="-1"]:focus {
  36.      outline: none !important; /* Remove outline for tabindex="-1" */
  37.      box-shadow: none !important; /* Prevent shadow effects */
  38.  }
  39.  
  40.  /* Disable pointer events if not needed */
  41.  .bannerContainer,
  42.  .parentContainer,
  43.  .contentContainer,
  44.  .sidebar,
  45.  nav,
  46.  ul {
  47.      pointer-events: auto; /* Ensure interaction is not blocked */
  48.      user-select: none; /* Prevent accidental text selection */
  49.      outline: none !important; /* Ensure no focus outline appears */
  50.  }
  51.  
  52.  /* Banner styles */
  53.  .bannerContainer {
  54.      background-image: url("https://i.imgur.com/uhbJjEL.png");
  55.      background-size: 750px 200px;
  56.      background-position: center;
  57.      background-repeat: no-repeat;
  58.      width: 100%;
  59.      height: 200px;
  60.      display: flex;
  61.      justify-content: center;
  62.      align-items: center;
  63.      margin: 0 auto;
  64.      user-select: none; /* Prevent accidental text selection */
  65.      pointer-events: auto; /* Allow mouse interaction */
  66.  }
  67.  
  68.  /* Body styles */
  69.  body {
  70.      margin: 0;
  71.      padding: 0;
  72.      color: orangered;
  73.      background: #150d04;
  74.      font-family: Tahoma, Verdana, sans-serif;
  75.      display: block;
  76.      height: 100vh;
  77.      user-select: none; /* Prevent accidental text selection */
  78.  }
  79.  
  80.  /* Sidebar and link styles */
  81.  .linkHeader {
  82.      background-image: url("https://i.imgur.com/fleGYVl.png");
  83.      background-size: 200px 50px;
  84.      background-repeat: no-repeat;
  85.      text-align: center;
  86.      width: 200px;
  87.      height: 50px;
  88.      display: flex;
  89.      flex-direction: column;
  90.      justify-content: center;
  91.  }
  92.  
  93.  .linkTitle {
  94.      background-image: url("https://i.imgur.com/1JFpnZH.png");
  95.      background-size: 200px 50px;
  96.      background-repeat: no-repeat;
  97.      text-align: center;
  98.      width: 200px;
  99.      height: 50px;
  100.      display: flex;
  101.      flex-direction: column;
  102.      justify-content: center;
  103.  }
  104.  
  105.  .linkBg {
  106.      background-image: url("https://i.imgur.com/Fj8Bal1.png");
  107.      background-size: 200px 50px;
  108.      background-repeat: no-repeat;
  109.      text-align: center;
  110.      width: 200px;
  111.      height: 50px;
  112.      display: flex;
  113.      flex-direction: column;
  114.      justify-content: center;
  115.  }
  116.  
  117.  .linkFooter {
  118.      background-image: url("https://i.imgur.com/i7CApNO.png");
  119.      background-size: 200px 50px;
  120.      background-repeat: no-repeat;
  121.      text-align: center;
  122.      width: 200px;
  123.      height: 50px;
  124.      display: flex;
  125.      flex-direction: column;
  126.      justify-content: center;
  127.  }
  128.  
  129.  .contentHeader {
  130.      background-image: url("https://i.imgur.com/BLvjRfS.png");
  131.      background-size: 800px 50px;
  132.      background-repeat: no-repeat;
  133.      text-align: center;
  134.      width: 800px;
  135.      height: 50px;
  136.      display: flex;
  137.      flex-direction: column;
  138.      justify-content: center;
  139.      align-items: start !important;
  140.      margin-top: 0;
  141.  }
  142.  /* Sidebar styles */
  143.  .sidebar {
  144.      margin: 0;
  145.      color: navy;
  146.      width: 200px;
  147.  }
  148.  
  149.  .sidebar.left {
  150.      margin: 0;
  151.      padding: 0;
  152.  }
  153.  
  154.  .sidebar ul {
  155.      list-style: none; /* Remove bullet points */
  156.      margin: 0;
  157.      padding: 0;
  158.      display: flex;
  159.      flex-direction: column;
  160.      justify-content: center;
  161.      color: white;
  162.      font-family: Tahoma, Verdana, sans-serif;
  163.  }
  164.  
  165.  .sidebar .linkBg:hover {
  166.      filter: brightness(150%);
  167.      transition: 1s ease-in-out !important;
  168.  }
  169.  
  170.  /* Content container styles */
  171.  .contentContainer {
  172.      display: grid;
  173.      grid-template-columns: 600px 1fr 200px; /* Left sidebar, main content, right sidebar */
  174.      justify-content: center; /* Centers the grid horizontally */
  175.      align-items: start; /* Aligns grid items at the top */
  176.      height: 100vh; /* Full viewport height */
  177.      gap: 10px; /* Space between columns */
  178.      width: 800px;
  179.      margin-left: 0;
  180.      margin-right: 0;
  181.      overflow: auto;
  182.  }
  183.  
  184.  /* Parent container styles */
  185.  .parentContainer {
  186.      display: flex;
  187.      justify-content: center; /* Horizontally centers the contentContainer */
  188.      align-items: start; /* Vertically aligns to the top */
  189.      height: 100vh; /* Full viewport height */
  190.      margin-top: 0px;
  191.      padding: 0;
  192.      user-select: none; /* Prevent text selection */
  193.      pointer-events: auto; /* Ensure mouse interaction is unaffected */
  194.  }
  195.  </style>
  196.     <body tabindex="-1">
  197.         <script src="focusListener.js"></script>
  198.         <div class="bannerContainer" tabindex="-1"></div>
  199.  
  200.         <div class="parentContainer" tabindex="-1">
  201.             <div class="sidebarContainer" tabindex="-1">
  202.                 <nav class="sidebar left" tabindex="-1">
  203.                     <ul>
  204.                         <li class="linkHeader"></li>
  205.                         <li class="linkTitle">Navtitle</li>
  206.                         <li class="linkBg">Navlink</li>
  207.                         <li class="linkBg">Navlink</li>
  208.                         <li class="linkFooter"></li>
  209.                     </ul>
  210.                 </nav>
  211.             </div>
  212.             <div class="contentContainer" tabindex="-1">
  213.                 <p class="contentHeader"><br /><br /></p>
  214.                 <br>
  215.                 <p>
  216.                     Zebrasquid4Life.Zebrasquid4Life
  217.                     Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.Zebrasquid4Life.
  218.                 </p>
  219.             </div>
  220.             <p class="contentFooter"></p>
  221.             <div class="sidebarRight" tabindex="-1">
  222.                 <nav class="sidebar Right" tabindex="-1">
  223.                     <ul>
  224.                         <li class="linkHeader"></li>
  225.                        <li class="linkTitle">Navtitle</li>
  226.                         <li class="linkBg">Navlink</li>
  227.                         <li class="linkBg">Navlink</li>
  228.                         <li class="linkFooter"></li>
  229.                     </ul>
  230.                 </nav>
  231.             </div>
  232.         </div>
  233.     </body>
  234. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement