Template:Baltimore BioCrew/CSS

<style>

  • {box-sizing:border-box}

/* Slideshow container */ .slideshow-container {

 max-width: 100%;
 max-height: 100vh;
 margin: auto;

}

.mySlides { width:100%; height:100%; max-height: inherit; display:none; }

.mySlides img {

   height: inherit;
   max-height: inherit;
   width: 100%;

}

</style>


/* text */ .text {

 color: #f2f2f2;
 padding: 8px 12px;
 position: absolute;
 bottom: 80%;
 width: 100%;
 text-align: center;

}


/* Fading animation */ .fade {

 -webkit-animation-name: fade;
 -webkit-animation-duration: 1.5s;
 animation-name: fade;
 animation-duration: 1.5s;

}

@-webkit-keyframes fade {

 from {opacity: .4}
 to {opacity: 1}

}

@keyframes fade {

 from {opacity: .4}
 to {opacity: 1}

} </style>