| @tailwind base; |
| @tailwind components; |
| @tailwind utilities; |
|
|
| |
| @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; |
| } |
|
|
| |
| .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: ""; |
| } |
|
|