Anonymous
×
Create a new article
Write your page title here:
We currently have 15 articles on TwistedFates Database. Type your article name above or click on one of the titles below and start writing!



TwistedFates Database
15Articles

MediaWiki:Common.css: Difference between revisions

No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 23: Line 23:
.portable-infobox .pi-title {
.portable-infobox .pi-title {


}
@media screen {
    /* search button */
    .wvui-button:not([disabled]) {
        color: #color of search button text;
    }
    .wvui-button--framed:not([disabled]) {
        background-color: #color of search button;
        border-color: #search button border color;
    }
   
    /* dropdown search suggestions */
    .wvui-typeahead-search__suggestions {
        background-color: #background color;
        border-color: #border color;
    }
    .wvui-typeahead-suggestion:not(.wvui-typeahead-suggestion--active) .wvui-typeahead-suggestion__title {
        color: #default color of suggested pages' titles;
    }
    .wvui-typeahead-suggestion--active .wvui-typeahead-suggestion__title {
        color: #color of highlighted suggested page title;
    }
}
}

Revision as of 00:39, 9 December 2023

.portable-infobox {
   width: 35%;
}

.portable-infobox .pi-secondary-background {
   background-color: cyan;
}

.portable-infobox .pi-border-color {
   border-color: cyan;
}

.portable-infobox .pi-title {
  padding-top:14px;
  font-size:20px;
  font-weight:bold;
  line-height:24px;
  background-color: rgba(0,100,100,0.8);
  color: cyan;
  border-radius: 10px 10px 0 0;
}

.portable-infobox .pi-title {

}

@media screen {
    /* search button */
    .wvui-button:not([disabled]) {
        color: #color of search button text;
    }
    .wvui-button--framed:not([disabled]) {
        background-color: #color of search button;
        border-color: #search button border color;
    }
    
    /* dropdown search suggestions */
    .wvui-typeahead-search__suggestions {
        background-color: #background color;
        border-color: #border color;
    }
    .wvui-typeahead-suggestion:not(.wvui-typeahead-suggestion--active) .wvui-typeahead-suggestion__title {
        color: #default color of suggested pages' titles;
    }
    .wvui-typeahead-suggestion--active .wvui-typeahead-suggestion__title {
        color: #color of highlighted suggested page title;
    }
}