initial commit

This commit is contained in:
SowinskiBraeden committed 2025-05-19 10:19:30 -07:00
commit a987dc3230
4 files changed
+159

No files matched your search

+41
View File
@@ -0,0 +1,41 @@
body {
margin: 0px;
}
#cards {
border: 2px tomato solid;
width: 600px;
height: 400px;
margin: auto;
display: flex;
flex-wrap: wrap;
}
.card {
width: 33.33%;
position: relative;
transition: transform 1s;
perspective: 1000px;
transform-style: preserve-3d;
}
img {
width: 100%
}
.front_face,
.back_face {
position: absolute;
backface-visibility: hidden;
}
.flip {
transform: rotateY(180deg);
}
.front_face {
transform: rotateY(180deg);
}