File size: 1,459 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
@tailwind base;
@tailwind components;
@tailwind utilities;
/* target button */
@layer components {
.navBtn {
@apply hidden h-6 md:inline-flex
cursor-pointer hover:scale-125
transition-all duration-150 ease-out;
}
.btn {
@apply h-7 hover:scale-125 cursor-pointer transition-all duration-150 ease-out;
}
}
.pb-full {
padding-bottom: 100%;
}
.bioclass {
color: #8e8e8e;
}
/* hide search icon on search focus */
.search-bar:focus + .fa-search {
display: none;
}
@media screen and (min-width: 768px) {
.post:hover .overlay {
display: block;
}
}
.heart_tip::before {
position: absolute;
content: "";
border: 15px solid transparent;
border-bottom-color: #ef4444;
left: 50%;
transform: translate(-50%, -130%);
}
.heart_tip,
.heart_tip::before {
filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}
.heart_tip::after {
height: 30%;
width: 40%;
background-color: #ef4444;
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%);
content: "";
}
.search-tip::before {
position: absolute;
content: "";
border: 20px solid transparent;
border-bottom-color: #fff;
left: 50%;
transform: translate(-50%, -130%);
}
.search-tip,
.search-tip::before {
filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}
.search-tip::after {
height: 15%;
width: 40%;
background-color: #fff;
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%);
content: "";
}
|