Tinder clone
by askhflajsf
HTML
<script src="https://hammerjs.github.io/dist/hammer.min.js"></script>
<div id="board">
<div class="card" style="background-image: url('https://lorempixel.com/400/600/sports')"></div>
<div class="card" style="background-image: url('https://lorempixel.com/400/600/sports')"></div>
<div class="card" style="background-image: url('https://lorempixel.com/400/600/sports')"></div>
</div>
CSS
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#board {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
background-color: rgb(245, 247, 250);
}
.card {
width: 320px;
height: 320px;
position: absolute;
top: 50%;
left: 50%;
border-radius: 1%;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
background-color: white;
transform: translateX(-50%) translateY(-50%) scale(0.95);
}