Actions

Monsters.css: Difference between revisions

From MM6 Wiki

No edit summary
No edit summary
Line 7: Line 7:
}
}
.tabs dd.active > a, .tabs .tab-title.active > a {
.tabs dd.active > a, .tabs .tab-title.active > a {
     background-color: #828282;
     background-color: #222;
     color: #fff;
     color: #fff;
}
}
Line 27: Line 27:
     display: inline-flex;
     display: inline-flex;
     border: 2px solid gray;
     border: 2px solid gray;
    background: transparent;
}
}

Revision as of 17:17, 17 November 2019

.tabs dd > a, .tabs .tab-title > a {

   padding: 1.0rem 1.0rem;
   padding-right: 0.5rem;
   padding-left: 0.5rem;
   text-align: center;
   border: 1px #ffffff solid;

} .tabs dd.active > a, .tabs .tab-title.active > a {

   background-color: #222;
   color: #fff;

} .tabs {

   margin-bottom: 0 !important;
   margin-left: 0;
   justify-content: center;
   align-items: center;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;

} .tabs dd, .tabs .tab-title {

   margin-top: 1vh;
   margin-bottom: 1vh;
   margin-left: 1vw;
   margin-right: 1vw;
   width: unset;
   display: inline-flex;
   border: 2px solid gray;
   background: transparent;

}