Actions

Monsters.css: Difference between revisions

From MM6 Wiki

No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 5: Line 5:
     text-align: center;
     text-align: center;
     border: 1px #ffffff solid;
     border: 1px #ffffff solid;
}
     background-color: transparent;
.tabs dd, .tabs .tab-title {
    margin-left: 1vw;
     margin-right: 1vw;
    width: unset;
    display: inline-flex;
    border: 2px solid gray;
}
}
.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 21:
}
}
.tabs dd, .tabs .tab-title {
.tabs dd, .tabs .tab-title {
     margin-left: unset;
    margin-top: 1vh;
     margin-right: unset;
    margin-bottom: 1vh;
     margin-left: 1vw;
     margin-right: 1vw;
     width: unset;
     width: unset;
     display: inline-flex;
     display: inline-flex;
    border: 2px solid gray;
}
}

Latest revision as of 17:18, 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;
   background-color: transparent;

} .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;

}