mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 14:57:31 +00:00
137 lines
2 KiB
Plaintext
137 lines
2 KiB
Plaintext
/*
|
|
* Framework
|
|
*/
|
|
html {
|
|
// Not ideal but it works
|
|
scroll-padding-top: 6rem;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
min-height: 100vh;
|
|
padding: 0;
|
|
margin: 0;
|
|
accent-color: var( --color-primary );
|
|
background: var( --color-surface-0 );
|
|
color: var( --color-base );
|
|
}
|
|
|
|
:focus {
|
|
outline-color: var( --color-primary );
|
|
}
|
|
|
|
input,
|
|
select,
|
|
textarea {
|
|
border: 1px solid var( --border-color-base );
|
|
background-color: var( --color-surface-1 );
|
|
color: inherit;
|
|
}
|
|
|
|
textarea {
|
|
width: 100%;
|
|
}
|
|
|
|
label {
|
|
color: var( --color-base--subtle );
|
|
font-size: 0.875rem;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
blockquote {
|
|
margin: var( --space-md );
|
|
color: var( --color-base--subtle );
|
|
|
|
cite {
|
|
display: block;
|
|
margin-top: var( --space-sm );
|
|
|
|
&:before {
|
|
content: '— ';
|
|
}
|
|
}
|
|
}
|
|
|
|
sup,
|
|
sub {
|
|
line-height: 1;
|
|
}
|
|
|
|
td {
|
|
> p,
|
|
> ul,
|
|
> ol {
|
|
&:first-child {
|
|
margin-top: 0; // Remove margin for the first element in td
|
|
}
|
|
}
|
|
}
|
|
|
|
.nowrap {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/*
|
|
* Content
|
|
*/
|
|
.mw-body,
|
|
.parsoid-body {
|
|
direction: ltr;
|
|
}
|
|
|
|
// TODO: Think of better places to put indicators;
|
|
.mw-indicators {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 10px;
|
|
border-left: 1px solid var( --border-color-base );
|
|
margin-left: 10px;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
video {
|
|
max-width: 100%; // Prevent overflow
|
|
}
|
|
|
|
.skin-citizen-dark {
|
|
color-scheme: dark;
|
|
|
|
.mw-indicator {
|
|
filter: invert( 1 ) hue-rotate( 180deg );
|
|
|
|
// Have to hardcode the color since the filter breaks the color
|
|
a {
|
|
color: @color-primary;
|
|
|
|
&:hover {
|
|
color: @color-primary--hover;
|
|
}
|
|
|
|
&:active {
|
|
color: @color-primary--active;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media ( max-width: @width-breakpoint-tablet ) {
|
|
.mw-body,
|
|
.parsoid-body {
|
|
overflow-x: hidden; // fallback if clip is not supported
|
|
overflow-x: clip; // avoid breaking layout in smaller screen sizes
|
|
}
|
|
|
|
table {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
@media ( min-width: @width-breakpoint-tablet ) {
|
|
// Delay scroll animation won't happen on load
|
|
// Use it only for larger viewport as it is very costly
|
|
// on mobile devices
|
|
html.citizen-animations-ready {
|
|
scroll-behavior: smooth;
|
|
}
|
|
}
|