You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
2.9 KiB
149 lines
2.9 KiB
|
|
.mat-shadows-a{
|
|
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
|
|
}
|
|
|
|
.mat-shadows-b{
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
|
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
.mat-shadows-b:hover {
|
|
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
|
|
}
|
|
|
|
.slidevolde{
|
|
margin-top:-1000px;
|
|
}
|
|
|
|
/*button*/
|
|
|
|
.mat-slide{
|
|
transition: all .5s ease-out;
|
|
}
|
|
|
|
.mat-button{
|
|
position : absolute;
|
|
color: #FFF;
|
|
width: 56px;
|
|
height: 56px;
|
|
font-size: 28px;
|
|
border-radius: 50%;
|
|
box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.3);
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
vertical-align: middle;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
border: none;
|
|
user-select: none;
|
|
white-space: nowrap;
|
|
outline: none;
|
|
align-items: flex-start;
|
|
transition: all .3s ease-out;
|
|
}
|
|
|
|
.mat-button, .mat-button::after, .mat-button::before {
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.mat-button:hover {
|
|
box-shadow: 0 4px 11px 0px rgba(0, 0, 0, 0.375);
|
|
background-color: #23b9fc;
|
|
}
|
|
.material-icon{
|
|
position : absolute;
|
|
left:0px;
|
|
top:0px;
|
|
right:0px;
|
|
bottom:0px;
|
|
background-image: url(img/right-button.png);
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
/*flip card*/
|
|
|
|
/* entire container, keeps perspective */
|
|
.flipcard-container{
|
|
perspective: 1000px;
|
|
-ms-perspective: 1000px;
|
|
}
|
|
/* flip the pane when hovered */
|
|
.flipcard-container.flipcard-hover .flipcard-flipper{
|
|
transform: rotateY(180deg);
|
|
-ms-transform: rotateY(180deg);
|
|
-webkit-transform: rotateY(180deg);
|
|
}
|
|
|
|
.flipcard-question{
|
|
background-image: url(question_mark.png);
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.flipcard-image{
|
|
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
}
|
|
|
|
.flipcard-container{
|
|
position:absolute;
|
|
left:50px;
|
|
top:50px;
|
|
width: 320px;
|
|
height: 320px;
|
|
}
|
|
|
|
.flipcard-front,.flipcard-back{
|
|
position: relative;
|
|
width: 320px;
|
|
height: 320px;
|
|
text-align: center;
|
|
cursor:pointer;
|
|
border-radius:5px;
|
|
overflow: hidden;
|
|
background-color:white;
|
|
}
|
|
.flipcard-front{
|
|
border:solid 1px #D8D8D8;
|
|
}
|
|
.flipcard-back{
|
|
border:solid 1px gray;
|
|
}
|
|
|
|
/* flip speed goes here */
|
|
.flipcard-flipper{
|
|
transition: 0.7s;
|
|
transform-style: preserve-3d;
|
|
-ms-transition: 0.7s;
|
|
-ms-transform-style: preserve-3d;
|
|
position: relative;
|
|
}
|
|
|
|
/* hide back of pane during swap */
|
|
.flipcard-front, .flipcard-back{
|
|
backface-visibility: hidden;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
/* front pane, placed above back */
|
|
.flipcard-front{
|
|
z-index: 2;
|
|
transform: rotateY(0deg);
|
|
-ms-transform: rotateY(0deg);
|
|
}
|
|
|
|
/* back, initially hidden pane */
|
|
.flipcard-back {
|
|
transform: rotateY(180deg);
|
|
-ms-transform: rotateY(180deg);
|
|
}
|
|
|
|
|