css sorting

This commit is contained in:
fr34k 2020-11-01 20:22:05 +01:00
parent 775900e27f
commit fb2c7d5319
1 changed files with 35 additions and 0 deletions

35
tmp
View File

@ -21,3 +21,38 @@
width: 100px;
}
}
+ Slide in stuff
/*.col-img-desc {
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(51, 51, 51, 0.4);
overflow: hidden;
width: 220px;
height: 220px;
opacity: 0;
border-radius: 50%;
transition: .5s ease;
}
.col-img-container:hover .col-img-desc {
opacity: 1;
}
.col-img-desc div {
color: white;
font-size: 20px;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
} */