MediaWiki:Common.css: Difference between revisions

From The Toaq Wiki
mNo edit summary
(make things work . . .)
Line 17: Line 17:
}
}


[title], a[href] {
[title]:not(img):not(.no-decoration), a[href] {
  text-decoration: none;
  box-shadow: inset 0px -2px 0px 0px argb(0, 0, 0, 25%);
}
 
.no-decoration {
   text-decoration: none;
   text-decoration: none;
  box-shadow: inset 0px -2px 0px 0px currentcolor;
}
}


a[href] {
a[href] {
   color: #5b9aaa !important;
   color: rgb(91, 154, 170) !important;
}
a[href][title] {
  box-shadow: inset 0px -2px 0px 0px rgba(91, 154, 170, 25%);
}
}


a[href]:focus, a[href]:hover, a[href]:active, a[href]:visited {
a[href]:focus, a[href]:hover, a[href]:active, a[href]:visited {
   color: #004e5d !important;
   color: rgb(0, 78, 93) !important;
}
a[href][title]:focus, a[href][title]:hover, a[href][title]:active, a[href][title]:visited {
  box-shadow: inset 0px -2px 0px 0px rgba(0, 78, 93, 25%);
}
}


a[href].new {
a[href].new {
   color: #c87b96 !important;
   color: rgb(200, 123, 150) !important;
}
a[href][title].new {
  box-shadow: inset 0px -2px 0px 0px rgba(200, 123, 150, 25%);
}
}

Revision as of 14:44, 19 February 2022

@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@500;700&display=swap');

.toaq {
  font-family: 'Commissioner', system-ui, sans-serif;
}

@font-face {
  font-family: 'ToaqScript';
  src: url(/Special:Redirect/file/ToaqScript.ttf);
}

.toaq-script {
  font-family: ToaqScript;
  font-size: 200%;
  line-height: 100%;
  font-weight: normal !important;
}

[title]:not(img):not(.no-decoration), a[href] {
  text-decoration: none;
  box-shadow: inset 0px -2px 0px 0px argb(0, 0, 0, 25%);
}

.no-decoration {
  text-decoration: none;
}

a[href] {
  color: rgb(91, 154, 170) !important;
}
a[href][title] {
  box-shadow: inset 0px -2px 0px 0px rgba(91, 154, 170, 25%);
}

a[href]:focus, a[href]:hover, a[href]:active, a[href]:visited {
  color: rgb(0, 78, 93) !important;
}
a[href][title]:focus, a[href][title]:hover, a[href][title]:active, a[href][title]:visited {
  box-shadow: inset 0px -2px 0px 0px rgba(0, 78, 93, 25%);
}

a[href].new {
  color: rgb(200, 123, 150) !important;
}
a[href][title].new {
  box-shadow: inset 0px -2px 0px 0px rgba(200, 123, 150, 25%);
}