User:TheresaFrog421/Sandbox.css

From Puella Magi Wiki
Jump to navigation Jump to search
/* Just for testing and fun */

/* Slideshow test from a tutorial (https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Overflow/Carousels) */
.Story ul {
	width: 50em;
	height: 30em;
	display: flex;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
	border: dashed 2px white;
	margin: auto;
}

.Story li {
	list-style-type: none;
	scroll-snap-align: center;
	flex: 0 0 100%;
	border: dashed 2px white;
}

.Story img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/*  */
.gallerycarousel .mw-gallery-slideshow-buttons {
  padding: 0;
  margin: 0;
  z-index: 1;
}
.gallerycarousel .mw-gallery-slideshow-buttons > div > :nth-child(1) {
  float: left;
  margin-top: 10em;
}
.gallerycarousel .mw-gallery-slideshow-buttons > div > :nth-child(2) {
  display: none;
}
.gallerycarousel .mw-gallery-slideshow-buttons > div > :nth-child(3) {
  float: right;
  margin-top: 10em;
  margin-right: auto;
}