mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-29 00:31:09 +00:00
Figure caption and blockquote styles update
This commit is contained in:
parent
6dfe6aace2
commit
77bd2e0bea
|
@ -114,6 +114,22 @@ textarea {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: @content-margin-top * 2 * @content-scaling 0 0;
|
||||
padding: 0 @content-margin-top * 4 * @content-scaling;
|
||||
color: @base-30;
|
||||
font-family: @fonts-serif;
|
||||
font-size: @content-quote-primary-size;
|
||||
font-style: italic;
|
||||
|
||||
cite {
|
||||
display: block;
|
||||
margin-top: @content-margin-top * @content-scaling;
|
||||
font-family: @fonts;
|
||||
font-style: normal;
|
||||
}
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-left: @content-margin-top * 2;
|
||||
margin-bottom: 0.1rem;
|
||||
|
@ -125,6 +141,7 @@ dt {
|
|||
}
|
||||
|
||||
td {
|
||||
|
||||
>p,
|
||||
>ul,
|
||||
>ol {
|
||||
|
@ -680,6 +697,7 @@ a {
|
|||
margin: @content-margin-top / 2 0 0;
|
||||
color: @base-30;
|
||||
font-size: @content-caption-size;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.thumb {
|
||||
|
@ -859,6 +877,7 @@ a {
|
|||
}
|
||||
|
||||
@media only screen and (max-width: @screen0 ) {
|
||||
|
||||
div.tnone,
|
||||
div.floatnone,
|
||||
table.floatnone,
|
||||
|
@ -883,6 +902,7 @@ a {
|
|||
}
|
||||
|
||||
@media only screen and (max-width: @screen1 ) {
|
||||
|
||||
.catlinks,
|
||||
#p-namespaces {
|
||||
margin: 0 !important; // somehow got overrided
|
||||
|
@ -928,6 +948,7 @@ a {
|
|||
}
|
||||
|
||||
.mw-body-content {
|
||||
|
||||
div.tleft,
|
||||
div.floatleft,
|
||||
table.floatleft {
|
||||
|
@ -1036,6 +1057,7 @@ a {
|
|||
}
|
||||
|
||||
@media only screen and (min-width: @screen4 ) {
|
||||
|
||||
div.tnone,
|
||||
div.floatnone,
|
||||
table.floatnone,
|
||||
|
@ -1054,6 +1076,7 @@ a {
|
|||
margin-right: @negative-margin !important;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
// Logged in styles
|
||||
.not-logged {
|
||||
|
|
|
@ -143,14 +143,20 @@
|
|||
*/
|
||||
@fonts: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
|
||||
/**
|
||||
* Citizen font stack
|
||||
* Citizen title font stack
|
||||
*
|
||||
* `Titillium Web` – Futuristic, Closet to Univia Pro, OFL licensed
|
||||
* `Univia Pro` - Fallback font if Univia Pro is present
|
||||
* 'Monoid' - Code font, OFL licensed
|
||||
* Fallback using primary fonts
|
||||
*/
|
||||
@fonts-secondary: 'Titillium Web', 'Univia Pro', @fonts;
|
||||
@fonts-secondary: 'Titillium Web', @fonts;
|
||||
/**
|
||||
* Citizen serif font stack
|
||||
*
|
||||
* `Geogria` – Windows, Mac
|
||||
* `serif` – (Generic) web font fallback
|
||||
*/
|
||||
@fonts-serif: 'Geogria', @fonts;
|
||||
/**
|
||||
* System font stack for monospace fonts
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue