feat: with biteme cli

This commit is contained in:
2023-03-07 15:44:30 +01:00
parent 762c792c05
commit f56f8c6818
11 changed files with 773 additions and 120 deletions

View File

@@ -655,6 +655,32 @@ video {
flex-grow: 1;
}
@keyframes bounce {
0%, 100% {
transform: translateY(-25%);
animation-timing-function: cubic-bezier(0.8,0,1,1);
}
50% {
transform: none;
animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}
.animate-bounce {
animation: bounce 1s infinite;
}
@keyframes pulse {
50% {
opacity: .5;
}
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.list-decimal {
list-style-type: decimal;
}
@@ -743,6 +769,20 @@ video {
border-top-right-radius: 1rem;
}
.border {
border-width: 1px;
}
.border-gray-400 {
--tw-border-opacity: 1;
border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.border-gray-300 {
--tw-border-opacity: 1;
border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.bg-gray-200 {
--tw-bg-opacity: 1;
background-color: rgb(229 231 235 / var(--tw-bg-opacity));