MediaWiki:Common.css: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
Line 24: Line 24:
     background: #fbfbfb !important;
     background: #fbfbfb !important;
     padding: 10px 5px 0 !important;
     padding: 10px 5px 0 !important;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 25%;
}
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.cardcontainer {
  padding: 2px 16px;
}
}

Revision as of 12:23, 26 December 2020

/* CSS placed here will be applied to all skins */

@import url(https://fonts.googleapis.com/css?family=Roboto:400,700);

* {
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-family: 'Roboto', sans-serif !important;
}

#p-logo-text a {
    font-family: 'Roboto', sans-serif !important;
}

#p-banner{position:relative}
#p-banner:after{content:"";position:absolute;left:0;top:0;width:100%;height:100%;background: #fff url(/images/e/ec/OnsetDeveloperWiki.png) 50% 50% / contain;background-repeat: repeat;
background-repeat: no-repeat;}

.noprint {
    border-radius: 3px;
    border: 1px solid #ddd !important;
    background: #fbfbfb !important;
    padding: 10px 5px 0 !important;
}