MediaWiki:Common.css: Difference between revisions

Del and Ins for LJ.
m (Adde img tweak.)
(Del and Ins for LJ.)
 
(19 intermediate revisions by 2 users not shown)
Line 1: Line 1:
@import url('https://fonts.googleapis.com/css?family=Alegreya:400,400i|Alegreya+Sans:400,400i,500,500i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Alegreya+Sans:ital,wght@0,400;0,500;0,700;0,800;1,400;1,500;1,700;1,800&family=Alegreya:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Overpass+Mono&display=swap');
@import url('https://fonts.googleapis.com/css?family=Overpass+Mono&display=swap');


/* Covers most text */  
/* Covers most text */  
Line 6: Line 5:
     font-family: "Alegreya Sans", serif;
     font-family: "Alegreya Sans", serif;
     font-size: 1.3em;
     font-size: 1.3em;
    font-weight: 400;
}
}


Line 19: Line 19:


/* Covers some headers */  
/* Covers some headers */  
.mw-body h1, .mw-body h2, .mw-body h3 {
.mw-body h1, .mw-body h2, .mw-body h4, .mw-body h5 {
     font-family: "Alegreya", sans-serif;
    font-family: "Alegreya", serif;
    font-weight: 500;
}
 
.firstHeading h1 {
font-family: "Alegreya", serif;
font-size: 2.6em;
font-weight: 700;
}
 
.mw-body h2 {
    font-size: 1.8em;
}
 
.mw-body h3 {
     font-family: "Alegreya Sans SC", sans-serif;
    font-size: 1.6em;
    font-weight: 500;
}
 
.mw-body h4 {
    font-size: 1.4em;
}
 
.mw-body h5 {
    font-size: 1.2em;
}
}


Line 26: Line 51:
code, pre, samp, kbd, tt, .example-mono, .userlinks-username, .monospaced, .keyboard-key, .button, .plaincode {  
code, pre, samp, kbd, tt, .example-mono, .userlinks-username, .monospaced, .keyboard-key, .button, .plaincode {  
font-family: "Overpass Mono", monospace !important;  
font-family: "Overpass Mono", monospace !important;  
}
/* Added <del> and <ins> formatting for Lipton's Journal */
:root {
  --del-color: #ff92bf;
  --ins-color: #ddff92;
}
del {
  --color: var(--del-color, red);
  text-decoration: none;
  padding: 0 .5em;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(to left, rgba(255, 255, 255, .5), transparent),
    linear-gradient(2deg, var(--color) 50%, transparent 50%),
    linear-gradient(-.9deg, var(--color) 50%, transparent 50%),
    linear-gradient(-60deg, var(--color) 50%, transparent 50%),
    linear-gradient(120deg, var(--color) 50%, transparent 50%);
 
  background-size:
    30% 1.5px,
    calc(100% - 20px) 10px,
    calc(100% - 20px) 10px,
    10px 10px,
    8px 8px;
 
  background-position:
    100% calc(50% + 2px),
    center center,
    center center,
    2px 50%,
    calc(100% - 3px) calc(50% + 1px);
}
ins {
  background: var(--ins-color, green);
  text-decoration: none;
}
}


Line 51: Line 114:
cite, dfn {
cite, dfn {
font-style: inherit;
font-style: inherit;
}
/* Drop cap & Start for Template:Dc */
.dropcap {
font-family: "Alegreya", sans-serif;
padding-right: 5px;
  float      : left;
  font-size  : 4em;
  line-height : 0.5;
  margin      : 0.205em 0.153em 0 0;
  font-weight: 900;
}
.dropcap + span {
    margin-left : -0.5em;
}
.intro {
font-family: Alegreya Sans SC;
font-weight: 700;
}
}