Difference between revisions of "MediaWiki:Common.css"

From Beasts of Bermuda
Jump to: navigation, search
 
Line 12: Line 12:
 
     word-break: break-word;
 
     word-break: break-word;
 
     text-wrap: pretty;
 
     text-wrap: pretty;
     transition: all 0.16s ease;
+
     transition: all .16s ease;
 
}
 
}
 
html,
 
html,

Latest revision as of 14:08, 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');

:root {
  --font: montserrat;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    word-break: break-word;
    text-wrap: pretty;
    transition: all .16s ease;
}
html,
body {
    margin: 0;
    font: 16px/1.6 var(--font)!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;
}