MediaWiki:Common.css: Difference between revisions

Jump to navigation Jump to search
AdminIsidore (talk | contribs)
No edit summary
AdminIsidore (talk | contribs)
No edit summary
Line 97: Line 97:


/* --- Final Vulgate CSS --- */
/* --- Final Vulgate CSS --- */
/* @font-face rule for the main text font */
@font-face {
@font-face {
   font-family: 'Bilbo Swash Caps';
   font-family: 'Bilbo Swash Caps';
   src: url('/resources/fonts/BilboSwashCaps-Regular.ttf') format('truetype');
   src: url('/resources/fonts/BilboSwashCaps-Regular.ttf') format('truetype');
}
}
/* This container holds the parchment and text layers */
.vulgate-container {
.vulgate-container {
     position: relative;
     position: relative;
Line 111: Line 107:
     margin: 3em auto;
     margin: 3em auto;
}
}
/* This is the PARCHMENT BACKGROUND layer */
.vulgate-parchment {
.vulgate-parchment {
     position: absolute;
     position: absolute;
Line 121: Line 115:
     box-shadow: 2px 3px 20px black, 0 0 125px #8f5922 inset;
     box-shadow: 2px 3px 20px black, 0 0 125px #8f5922 inset;
     background: #fffef0;
     background: #fffef0;
     filter: url(#wavy2); /* Wavy edge effect from the JS */
     filter: url(#wavy2);
     background-image: url('/wiki/Special:FilePath/Parchment-texture.png');
     background-image: url('/wiki/Special:FilePath/Parchment-texture.png');
}
}
/* This is the TEXT CONTENT layer, positioned on top */
.vulgate-content {
.vulgate-content {
     position: relative;
     position: relative;
Line 134: Line 126:
     color: #7F3300;
     color: #7F3300;
     text-align: justify;
     text-align: justify;
   
    /* Added subtle text shadow for an inked look */
     text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
     text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.vulgate-verse-number {
    font-weight: bold;
    margin-right: 5px;
}
}