44 lines
632 B
CSS
44 lines
632 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
height: 100vh;
|
|
display: flex;
|
|
background: #060AB2;
|
|
}
|
|
|
|
.memory-game {
|
|
width: 640px;
|
|
height: 640px;
|
|
margin: auto;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.memory-card {
|
|
width: calc(25% - 10px);
|
|
height: calc(33.333% - 10px);
|
|
margin: 5px;
|
|
position: relative;
|
|
transform: scale(1);
|
|
box-shadow: 1px 1px 1px rgba(0,0,0,.3);
|
|
}
|
|
|
|
.memory-card:active {
|
|
transform: scale(0.97);
|
|
transition: transform .2s;
|
|
}
|
|
|
|
.front-face,
|
|
.back-face {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 20px;
|
|
position: absolute;
|
|
border-radius: 5px;
|
|
background: #1C7CCC;
|
|
}
|