MediaWiki:Common.css: Difference between revisions
EarlTensei (talk | contribs) No edit summary |
EarlTensei (talk | contribs) No edit summary |
||
| Line 20: | Line 20: | ||
} | } | ||
.boxie h3 { | .boxie h3 { | ||
transition: all 700ms ease; | |||
background: #000; | background: #000; | ||
background: linear-gradient(90deg, rgb(0 0 0) 0%, rgba(0,0,0,1) 60%); | |||
padding: 8px 15px; | padding: 8px 15px; | ||
max-width: 340px; | max-width: 340px; | ||
clip-path: polygon(0 1%, 90% 0, 100% 100%, 0% 100%); | clip-path: polygon(0 1%, 90% 0, 100% 100%, 0% 100%); | ||
margin-top: 10px; | margin-top: 10px; | ||
} | |||
.boxie h3:hover { | |||
background: rgb(44,119,22); | |||
background: linear-gradient(90deg, rgba(44,119,22,1) 0%, rgba(0,0,0,1) 60%); | |||
} | } | ||
Revision as of 17:19, 20 December 2023
/* CSS placed here will be applied to all skins */
div#p-logo a {
background: url(https://indie.page/indie-page-logo.png);
background-size: contain;
}
.boxie + p {
display: none;
}
a {
color: #45ab4f !important;
}
.page-Funding table.wikitable {
max-width: 800px;
width: 100%;
table-layout:fixed;
}
.boxie div#toc {
display: none !important;
}
.boxie h3 {
transition: all 700ms ease;
background: #000;
background: linear-gradient(90deg, rgb(0 0 0) 0%, rgba(0,0,0,1) 60%);
padding: 8px 15px;
max-width: 340px;
clip-path: polygon(0 1%, 90% 0, 100% 100%, 0% 100%);
margin-top: 10px;
}
.boxie h3:hover {
background: rgb(44,119,22);
background: linear-gradient(90deg, rgba(44,119,22,1) 0%, rgba(0,0,0,1) 60%);
}