mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-16 02:54:06 +00:00
311 lines
4.3 KiB
Plaintext
311 lines
4.3 KiB
Plaintext
/*
|
|
* Framework
|
|
*/
|
|
html {
|
|
scroll-behavior: smooth; // not supported by IE, Edge, Safari, and Opera, use JQuery as fallback
|
|
scroll-padding-top: @header-height + @margin-side; // fixed header offset, supported by major browsers
|
|
}
|
|
|
|
html,
|
|
body {
|
|
min-height: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
background: var( --background-color-dp-00 );
|
|
color: var( --color-base );
|
|
overflow-x: hidden; // prevent overflow from scrollbar
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
color: var( --color-base--emphasized );
|
|
}
|
|
|
|
table {
|
|
display: block;
|
|
overflow: auto;
|
|
max-width: 100vw;
|
|
}
|
|
|
|
hr {
|
|
display: none;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: square;
|
|
}
|
|
|
|
ul,
|
|
ol {
|
|
padding: 0;
|
|
}
|
|
|
|
p,
|
|
ul,
|
|
ol,
|
|
dl {
|
|
margin: @content-margin-top 0 0 0;
|
|
}
|
|
|
|
pre,
|
|
code,
|
|
.mw-code {
|
|
border: 1px solid var( --border-color-base );
|
|
background-color: var( --background-color-framed );
|
|
}
|
|
|
|
code {
|
|
padding: 1px 4px;
|
|
}
|
|
|
|
pre,
|
|
.mw-code {
|
|
padding: 1rem;
|
|
/* Wrap lines in overflow. T2260, T103780 */
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
input,
|
|
select,
|
|
textarea {
|
|
background-color: var( --background-color-framed );
|
|
color: inherit;
|
|
}
|
|
|
|
fieldset {
|
|
padding: @content-margin-top / 2 @margin-side;
|
|
margin: @content-margin-top 0;
|
|
}
|
|
|
|
fieldset > table {
|
|
margin-top: 0 !important;
|
|
}
|
|
|
|
legend {
|
|
padding: 4px;
|
|
margin: 0;
|
|
color: var( --color-base--subtle );
|
|
}
|
|
|
|
input,
|
|
pre,
|
|
code,
|
|
fieldset,
|
|
select,
|
|
textarea {
|
|
border: 1px solid var( --border-color-base );
|
|
}
|
|
|
|
textarea {
|
|
width: 100%;
|
|
}
|
|
|
|
blockquote {
|
|
padding: 0 @content-margin-top * 4 * @content-scaling;
|
|
margin: @content-margin-top * 2 * @content-scaling;
|
|
color: @base-30;
|
|
|
|
cite {
|
|
display: block;
|
|
margin-top: @content-margin-top * @content-scaling;
|
|
|
|
&:before {
|
|
content: '— ';
|
|
}
|
|
}
|
|
}
|
|
|
|
dd {
|
|
margin-bottom: 0.1rem;
|
|
margin-left: @content-margin-top * 2;
|
|
}
|
|
|
|
td {
|
|
> p,
|
|
> ul,
|
|
> ol {
|
|
&:first-child {
|
|
margin-top: 0; // Remove margin for the first element in td
|
|
}
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: var( --color-primary );
|
|
text-decoration: none !important;
|
|
|
|
&:not( [ href ] ) {
|
|
cursor: pointer;
|
|
/* Always cursor:pointer even without href */
|
|
}
|
|
|
|
&:hover {
|
|
color: var( --color-primary--hover );
|
|
}
|
|
|
|
&:active {
|
|
color: var( --color-primary--active );
|
|
}
|
|
|
|
&.new {
|
|
color: var( --color-link-new ) !important; // Override visited
|
|
|
|
&:hover {
|
|
color: var( --color-link-new--hover ) !important;
|
|
}
|
|
|
|
&:active {
|
|
color: var( --color-link-new--active ) !important;
|
|
}
|
|
}
|
|
|
|
&.mw-selflink {
|
|
color: inherit;
|
|
font-weight: bold;
|
|
text-decoration: inherit;
|
|
|
|
&:hover {
|
|
cursor: inherit;
|
|
text-decoration: inherit;
|
|
}
|
|
|
|
&:active {
|
|
color: inherit;
|
|
}
|
|
}
|
|
}
|
|
|
|
.error {
|
|
padding: 2px 4px;
|
|
background-color: var( --background-color-destructive );
|
|
}
|
|
|
|
.nowrap {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/*
|
|
* Content
|
|
*/
|
|
.mw-body,
|
|
.parsoid-body {
|
|
min-height: 80vh; // avoid footer being in the middle of the page
|
|
padding: 0 @margin-side;
|
|
margin-top: @header-height + @margin-side;
|
|
direction: ltr;
|
|
}
|
|
|
|
.mw-body-content {
|
|
.plainlist ol,
|
|
.plainlist ul {
|
|
margin: 0;
|
|
line-height: inherit;
|
|
list-style: none none;
|
|
}
|
|
}
|
|
|
|
.mw-wiki-title {
|
|
a& {
|
|
color: @base-50;
|
|
transition: @transition-opacity;
|
|
|
|
&:hover,
|
|
&:active,
|
|
&:focus {
|
|
color: @base-30;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
figcaption,
|
|
.thumbcaption {
|
|
margin: @content-margin-top / 2 0 0;
|
|
color: @base-30;
|
|
}
|
|
|
|
.thumb {
|
|
overflow: hidden;
|
|
|
|
> .thumbinner {
|
|
> a {
|
|
transition: @transition-box-shadow-quick;
|
|
|
|
&:hover:not( .lazy ):not( .new ) {
|
|
.boxshadow(2);
|
|
|
|
img {
|
|
transform: scale( 1.1 );
|
|
}
|
|
}
|
|
|
|
&:before {
|
|
content: none;
|
|
}
|
|
|
|
&.new {
|
|
display: block;
|
|
padding: @margin-side / 2;
|
|
background-color: var( --background-color-framed );
|
|
transition: @transition-background-quick, @transition-color-quick;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
div.tleft,
|
|
div.floatleft,
|
|
table.floatleft {
|
|
clear: left;
|
|
float: left;
|
|
}
|
|
|
|
div.tright,
|
|
div.floatright,
|
|
table.floatright {
|
|
clear: right;
|
|
float: right;
|
|
}
|
|
|
|
.mw-indicators {
|
|
/* Ensure that this is displayed on top of .mw-body-content and clickable */
|
|
position: relative;
|
|
z-index: 1;
|
|
float: right;
|
|
}
|
|
|
|
.printfooter {
|
|
display: none;
|
|
}
|
|
|
|
div.patrollink {
|
|
font-size: 75%;
|
|
text-align: right;
|
|
}
|
|
|
|
/* Wider page width for special pages */
|
|
.ns--1 {
|
|
.firstHeading,
|
|
#siteSub,
|
|
.mw-body-content {
|
|
max-width: @screen2;
|
|
}
|
|
}
|
|
|
|
.skin-citizen-dark {
|
|
.mw-editsection > a:before {
|
|
filter: invert( 1 );
|
|
}
|
|
}
|
|
|
|
@media ( max-width: @screen2 ) {
|
|
.mw-editsection {
|
|
position: relative !important;
|
|
transform: none !important;
|
|
}
|
|
}
|