Difference between revisions of "Template:Judd UK/Stylesheets/BSS"

Line 12: Line 12:
 
     top: 0px;
 
     top: 0px;
 
     width: 100%;
 
     width: 100%;
     height: 100%;
+
     height: 100%!important;
 
     opacity: 0;
 
     opacity: 0;
 
     z-index: 1;
 
     z-index: 1;

Revision as of 14:24, 1 November 2017

/*https://www.sitepoint.com/make-a-simple-javascript-slideshow-without-jquery*/

  1. slides{
   position: relative;
   padding: 0px;
   margin: 0px!important;
   list-style-type: none;

}

.slide{

   position: absolute;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%!important;
   opacity: 0;
   z-index: 1;
   -webkit-transition: opacity 1s;
   -moz-transition: opacity 1s;
   -o-transition: opacity 1s;
   transition: opacity 1s;

}

.showing{

   opacity: 1;
   z-index: 2;

}