Jargon styling, italicise blockquote, vert orientation in infobox, list indent

This commit is contained in:
ryliejamesthomas 2021-10-14 16:23:58 +11:00
parent efd93b3960
commit bab833f65e
1 changed files with 16 additions and 3 deletions

19
gmt.css
View File

@ -9,7 +9,6 @@
/* These names are confusing... */ /* These names are confusing... */
} }
div#mw-content { div#mw-content {
border:var(--colour_secondary) 1px dashed; border:var(--colour_secondary) 1px dashed;
} }
@ -46,6 +45,9 @@ li.gallerybox {
padding:0.5em; padding:0.5em;
} }
.mw-content-ltr ul {
margin:0.3em 0 0 0.5em;
}
/* Sidebars */ /* Sidebars */
@ -61,7 +63,6 @@ div#catlinks-sidebar.sidebar-chunk {
box-shadow:0.5em 0.5em 0px rgba(50,0,0,0.25); box-shadow:0.5em 0.5em 0px rgba(50,0,0,0.25);
} }
/* Infoboxes */ /* Infoboxes */
table#infobox { table#infobox {
@ -89,17 +90,29 @@ table#infobox td.date {
table#infobox tr:first-child > th { table#infobox tr:first-child > th {
padding-bottom:0.5em; padding-bottom:0.5em;
} }
table#infobox tr > th {
vertical-align:top;
}
/* Other Templates */ /* Other Templates */
blockquote {
font-style:italic;
}
blockquote span.credit { blockquote span.credit {
font-style:normal; font-style:normal;
} }
em.jargon > a {
color:green;
cursor:help;
}
p.nb { p.nb {
background:var(--colour_bg_secondary); background:var(--colour_bg_secondary);
border:solid 1px var(--colour_quaternary); border:solid 1px var(--colour_quaternary);
margin:-1em 0; margin:1em 0;
padding:1em; padding:1em;
} }