Difference between revisions of "MediaWiki:Common.css"
Line 28: | Line 28: | ||
} | } | ||
a { | a { | ||
− | |||
font-weight: bold; | font-weight: bold; | ||
} | } |
Revision as of 14:02, 9 September 2024
/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*,
*:before,
*:after {
box-sizing: border-box;
word-break: break-word;
text-wrap: pretty;
transition: all 0.16s ease;
}
html,
body {
margin: 0;
font: 16px/1.6 montserrat!important;
text-align: justify;
}
img {
max-height: 100%;
max-width: 100%;
object-fit: cover;
}
a,
u,
strike {
text-decoration-thickness: 2px;
text-underline-offset: 3px;
}
a {
font-weight: bold;
}
i,
em {
letter-spacing: .5px;
}