Skip to content

Instantly share code, notes, and snippets.

@eharris99
Created June 25, 2016 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eharris99/3bb7a67851b6f69ef870ee2b819b33b0 to your computer and use it in GitHub Desktop.
Save eharris99/3bb7a67851b6f69ef870ee2b819b33b0 to your computer and use it in GitHub Desktop.
@mixin stripes($direction, $width-percent, $stripe-color, $stripe-background: #FFF) {
background: repeating-linear-gradient(
$direction,
$stripe-background,
$stripe-background ($width-percent - 1),
$stripe-color 1%,
$stripe-background $width-percent
);
}
@mixin transform($transformation) {
transform: $transformation;
-webkit-transform: $transformation;
-moz-transform: $transformation;
-ms-transform: $transformation;
-o-transform: $transformation;
}
@mixin photo-content {
object-fit: cover;
}
//Add your own mixins here
@mixin backface-visibility($visibility) {
backface-visibility: $visibility;
-webkit-backface-visibility: $visibility;
-moz-backface-visibility: $visibility;
-ms-backface-visibility: $visibility;
-o-backface-visibility: $visibility;
}
.notecard {
width: 300px;
height: 180px;
border: 1px solid black;
display: inline-block;
margin: 20px;
font-family: Roboto, sans-serif;
box-shadow: 1px 1px 2px 2px rgba(0,0,0,.2);
&:hover{
@include transform (rotatey(-180deg));
}
.front, .back {
width: 100%;
height: 100%;
position: absolute;
@include backface-visibility(hidden);
}
.front {
z-index: 3;
font-size: 20px;
.word {
display: block;
text-align: center;
position: relative;
top: 40%;
}
}
.back {
z-index: 1;
word-wrap: break-word;
line-height: 1.6;
.definition {
width: 100%;
height: 100%;
.photo {
width: 60%;
margin: 0px auto;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment