Work In Progress
This page is a work in progress.
Use SliderView
Custom CSS
#SliderView {
background: transparent;
width: 100%;
position: relative;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
text-align: center;
}
#SliderWrapper {
position: relative;
-webkit-transition: 1s;
-o-transition: 1s;
transition: 1s;
-webkit-transition-timing-function: cubic-bezier(.67,.01,.23,1);
-o-transition-timing-function: cubic-bezier(.67,.01,.23,1);
transition-timing-function: cubic-bezier(.67,.01,.23,1);
}
#SliderWrapper, #SliderWrapper ul, #SliderWrapper li, #NavBtns, #NavBtns ul {
margin: 0px;
padding: 0px;
}
.Sld {
height: auto;
list-style: none;
display: inline;
float: left;
}
.SlideIMG {
width: 100%;
}
.SlideIMG img {
display: block;
max-width: 100%;
height: auto;
min-width: 100%;
min-height: 100%;
position: relative;
}
#NavBtns {
position: absolute;
display: block;
}
.NavBtn {
position: relative;
display: block;
top: 0px;
width: auto;
height: auto;
list-style: none;
margin: 0px;
background: #e50d72;
text-align: center;
color: blue;
}
/* Button Background */
.nmLeft {
height: 100%;
left: 0px;
background: red;
}
.nmLeft li {
list-style: none;
padding: 10px 100px 10px 10px;
}
.nmLeft li:hover {
cursor: pointer;
background: linear-gradient(to right, #FFFFFF, blue, transparent);
color: currentColor;
}
.nmRight {
height: 100%;
right: 0px;
top: 10px;
background: transparent;
text-align: center;
}
.nmRight li {
list-style: none;
border-bottom: 3px solid transparent;
border-top: 3px solid transparent;
padding: 5px 15px 5px 15px;
}
.nmRight li:hover {
cursor: pointer;
background: blue;
transition-duration: 0.2s;
transition-timing-function: ease-out;
color: currentColor;
}
.nmTop {
width: 100%;
top: 0px;
background: #e50d72;
text-align: left;
}
.nmTop li {
display: inline-block;
list-style: none;
padding: 10px 10px 20px 10px;
}
.nmTop li:hover {
cursor: pointer;
background: linear-gradient(to bottom, red, #FFFFFF, transparent);
color: currentColor;
}
.nmBottom {
width: 100%;
bottom: 0px;
background: blue;
text-align: left;
}
.nmBottom li {
display: inline-block;
list-style: none;
padding: 20px 10px 10px 10px;
}
.nmBottom li:hover {
cursor: pointer;
background: linear-gradient(to top, red,#FFFFFF , transparent);
color: currentColor;
}
.nbActiveLeft {
background: blue;
}
.nbActiveRight {
background: blue;
color: red;
}
.nbActiveTop {
background: blue;
}
.nbActiveBottom {
background: blue;
}
/* Subtitle / Bottom Text */
.sl_info {
position: relative;
top: -25px;
width: 100%;
text-align: left;
background: rgba(0, 65, 241, 0.8);
color: white;
padding: 10px;
margin: -25px 0px -25px 0px;
}
Use Template Tiles
[[|Anime]] |
[[|Novels]] | |
[[|Movie]] |
[[|Music]] | |
[[|Characters]] |
[[|Locations]] | |
Custom CSS
.tiles {
border-spacing: 0;
margin: 0 auto;
max-width: 750px;
table-layout: fixed;
width: 98%;
}
.tiles td {
box-shadow: 0 0 10px #000;
outline: 1px solid #000;
position: relative;
}
.tiles td > div {
height: 150px;
overflow: hidden;
}
.tiles__description a {
align-items: center;
background-color: rgba(0, 0, 0, 0.2);
bottom: 0;
color: #fff;
display: flex;
font-size: 24px;
font-weight: bold;
justify-content: center;
left: 0;
height: 100%;
max-height: 100%;
position: absolute;
right: 0;
text-align: center;
text-decoration: none;
text-shadow: 1px 1px 0 #000, 2px 1px 0 #000, 1px 2px 0 #000, 2px 2px 0 #000, 3px 3px 4px #000;
text-transform: uppercase;
z-index: 1;
}
.tiles td:hover .tiles__description a {
background-color: rgba(0, 0, 0, 0.8);
max-height: 35px;
transition: background-color 0.5s, max-height 0.5s;
}



