Diferencia entre revisiones de «OptionBar.html»

De Wiki The-West ES
Ir a la navegación.
Sin resumen de edición
Sin resumen de edición
Línea 1: Línea 1:
<section class="optionBar" open>
<section class="optionBar" open>
   <button class="openClose_OptionBar" id="openAndCloseOptionBar"></button>
   <button class="openClose_OptionBar" id="openAndCloseOptionBar"></button>
  <!--<div class="containerOption">
    <span class="textOption">Linea de Búsquedas</span>
    <a class="optionInBar">
      <div style="
        width: 100%;
        height: 100%;
        background: url(https://westes.innogamescdn.com/images/interface/dock_icons.png?4) no-repeat;
        background-position-x: -208px !important;
        background-position-y: -52px !important;"></div>
    </a>
  </div>-->
   <a class="containerOption" href="/wiki/Indice_Alfab%C3%A9tico_de_B%C3%BAsquedas">
   <a class="containerOption" href="/wiki/Indice_Alfab%C3%A9tico_de_B%C3%BAsquedas">
     <span class="textOption">Linea de Búsquedas</span>
     <span class="textOption">Linea de Búsquedas</span>
Línea 126: Línea 115:
     flex-direction: column;
     flex-direction: column;
     border-right: 3px solid #100b07;
     border-right: 3px solid #100b07;
    justify-content: end;
   }
   }
   .containerOption{
   .containerOption{

Revisión del 02:30 17 nov 2023

<section class="optionBar" open>

 <button class="openClose_OptionBar" id="openAndCloseOptionBar"></button>
 <a class="containerOption" href="/wiki/Indice_Alfab%C3%A9tico_de_B%C3%BAsquedas">
   Linea de Búsquedas
     <img alt="Quests" src="https://wiki.the-west.net/images/3/34/Dock_quests.png" decoding="async" width="52" height="52">
 </a>
   Items
   <a class="optionInBar" title="Items">
   </a>
   Conjuntos/Sets
   <a class="optionInBar" title="Conjuntos">
     <img alt="Quests" src="https://es1.the-west.es/images/window/shop/icons/tabs/equip.png?1699352772" decoding="async" width="52" height="52">
   </a>
   Lista de Trabajos
   <a class="optionInBar" title="Lista de trabajos">
   </a>
   Artesanía
   <a class="optionInBar" title="Artesanía">
   </a>
   Logros
   <a class="optionInBar" title="Logros">
     <img alt="Quests" src="https://westes.innogamescdn.com/images/items/yield/rodeo_trophy.png?5" decoding="async" width="52" height="52">
   </a>
   Duelos
   <a class="optionInBar" title="Duelos">
   </a>
   Batallas de Fuerte
   <a class="optionInBar" title="Batallas de Fuerte">
   </a>
   Ciudades
   <a class="optionInBar" title="Ciudades">
   </a>
   Aventuras
   <a class="optionInBar" title="Aventuras">
     <img alt="Quests" src="https://es1.the-west.es/images/window/shop/icons/tabs/veteran.png?1699352772" decoding="async" width="52" height="52">
   </a>

</section>


<style>

 .optionBar{
   height: 550px;
   width: 55px;/*Close*/
   /*width: 200px;*//*Open*/
   position: fixed;
   top: 100px;
   background-image: url(/skins/MirageWest/images/headline-bgtile.png);
   box-shadow: inset 0px 0px 30px 8px #140a05;
   display: grid;
   padding: 5px;
   padding-top: 20px;
   padding-left: 0px;
   border-top-right-radius: 20px;
   border-bottom-right-radius: 20px;
   flex-direction: column;
   border-right: 3px solid #100b07;
   justify-content: end;
 }
 .containerOption{
   height: 52px;
   width: 295px;
   display: flex;
   justify-content: flex-end;
 }
 .optionInBar{
   background: url(https://wiki.the-west.net/images/a/a2/Dock_buttons.png) no-repeat;
     width: 52px !important;
     height: 52px !important;
 }
 .containerOption:hover .optionInBar{
   background-position-x: -52px !important;
 }
 .openClose_OptionBar{
   position: absolute;
   right: -35px;
   top: 37px;
   background: transparent;
   border: 0px solid;
   background: url(https://westes.innogamescdn.com/images/tw2gui/arrow_updown.png) no-repeat;
   width: 52px !important;
   height: 12px !important;
   background-position: 0px -2px;
   rotate: 90deg;
   /* background-position: 0px -16px; */
 }
 .openClose_OptionBar:hover{
   box-shadow: 0px 0px 7px 1px yellow;
 }
 .textOption{
   background: url(https://westes.innogamescdn.com/images/tw2gui/window/minimized_bg.png?24) left top;
   height: 32px;
   width: 150px;
   background-position: 0px -32px;
   margin-top: 10px;
   color: white;
   font-weight: bold;
   font-size: 12px;
   text-align: center;
   line-height: 30px;
 }
 .containerOption:hover .textOption{
   box-shadow: 0px 0px 6px 0px yellow;
 }

</style>