It looks like you're new here. If you want to get involved, click one of these buttons!
html {
/* Vertical colour gradient */
background-image: linear-gradient(to bottom, gainsboro, silver);
background-image: -webkit-linear-gradient(top, gainsboro, silver);
background-attachment: fixed;
/* Fallback colour */
background-color: silver;
}
body {
/* Remove default styles */
background-color: transparent;
margin: 10% 0 0 0;
font-size: 100%;
/* Used to center the box */
text-align: center;
}
#passages {
/* Box background (white with 70% opacity) */
background-color: rgba(255, 255, 255, 0.7);
/* Border */
border: 2px solid white;
/* Rounded corners */
border-radius: 1em;
/* Box width */
width: 60%;
/* Center the box */
text-align: center;
display: inline-block;
min-height: 40%;
margin:auto;
margin-bottom: 5%;
padding: 0px;
}
.passage {
margin: 0px;
/* Inner margin within the box */
padding: 2em;
/* box-shadow: #000 0.5em 0.5em 0;*/
/* Text formatting */
font-family: Geneva, "Helvetica Neue", Helvetica, sans-serif;
color: black;
/*font-size: 100%;*/
font-size:1.2rem;
text-align:justify;
}
/* No sidebar */
#sidebar {
display:none;
}
/* Links */
a.internalLink, a.externalLink {
color: royalblue;
}
a.internalLink:hover, a.externalLink:hover {
color: deepskyblue;
text-decoration: none;
}
/* Shrink the page when viewed on devices with a low screen width */
@media screen and (max-width: 960px) {
.passage { font-size: 90%;}
#passages { width: 70%; }
}
@media screen and (max-width: 840px) {
.passage { font-size: 87.5%; }
#passages { width: 80%; }
}
@media screen and (max-width: 720px) {
.passage { font-size: 75%; }
#passages { width: 90%; }
}
/* transition for jonah*/
.passage .title { display: none }
.revision-span-in {
opacity: 0;
}
.revision-span:not(.revision-span-out) {
transition: 1s; -webkit-transition: 1s;
}
.revision-span-out {
position:absolute;
opacity: 0;
}