Jump to content

MediaWiki:Common.css: Difference between revisions

From Dave Dodson Wiki
Created page with "CSS placed here will be applied to all skins: Bible verse styling: .bible-verse { display: block; margin-bottom: 0.25em; line-height: 1.5; } .bible-verse-number { font-weight: bold; margin-right: 0.4em; color: #555; }"
 
No edit summary
Line 13: Line 13:
   margin-right: 0.4em;
   margin-right: 0.4em;
   color: #555;
   color: #555;
}
.bible-verse {
  display: inline;
}
.bible-verse + .bible-verse {
  margin-left: 0.25em;
}
.bible-verse:target {
  background-color: #fff3cd;
  padding: 2px 4px;
  border-radius: 3px;
}
}

Revision as of 15:42, 8 April 2026

/* CSS placed here will be applied to all skins */


/* Bible verse styling */
.bible-verse {
  display: block;
  margin-bottom: 0.25em;
  line-height: 1.5;
}

.bible-verse-number {
  font-weight: bold;
  margin-right: 0.4em;
  color: #555;
}


.bible-verse {
  display: inline;
}

.bible-verse + .bible-verse {
  margin-left: 0.25em;
}

.bible-verse:target {
  background-color: #fff3cd;
  padding: 2px 4px;
  border-radius: 3px;
}