@@ -377,7 +377,6 @@ pre {
377377button {
378378 background-color : transparent;
379379 background-image : none;
380- padding : 0 ;
381380}
382381
383382/**
@@ -479,6 +478,10 @@ textarea {
479478 resize : vertical;
480479}
481480
481+ input ::-ms-input-placeholder , textarea ::-ms-input-placeholder {
482+ color : # a0aec0 ;
483+ }
484+
482485input ::placeholder ,
483486textarea ::placeholder {
484487 color : # a0aec0 ;
@@ -578,10 +581,6 @@ video {
578581 height : auto;
579582}
580583
581- /*tailwind start components */
582-
583- /*tailwind end components */
584-
585584.bg-navy {
586585 --bg-opacity : 1 ;
587586 background-color : # 16202D ;
@@ -640,6 +639,10 @@ video {
640639 display : flex;
641640}
642641
642+ .table {
643+ display : table;
644+ }
645+
643646.flex-col {
644647 flex-direction : column;
645648}
@@ -860,6 +863,37 @@ video {
860863 z-index : 20 ;
861864}
862865
866+ @keyframes spin {
867+ to {
868+ transform : rotate (360deg );
869+ }
870+ }
871+
872+ @keyframes ping {
873+ 75% , 100% {
874+ transform : scale (2 );
875+ opacity : 0 ;
876+ }
877+ }
878+
879+ @keyframes pulse {
880+ 50% {
881+ opacity : .5 ;
882+ }
883+ }
884+
885+ @keyframes bounce {
886+ 0% , 100% {
887+ transform : translateY (-25% );
888+ animation-timing-function : cubic-bezier (0.8 , 0 , 1 , 1 );
889+ }
890+
891+ 50% {
892+ transform : none;
893+ animation-timing-function : cubic-bezier (0 , 0 , 0.2 , 1 );
894+ }
895+ }
896+
863897html , body {
864898 font-family : "Pier Sans" , "proxima-nova" , "Helvetica Neue" , sans-serif;
865899}
@@ -1094,6 +1128,9 @@ pre {
10941128 border-bottom-style : solid;
10951129}
10961130
1131+ @media (min-width : 640px ) {
1132+ }
1133+
10971134@media (min-width : 768px ) {
10981135 .md\:justify-between {
10991136 justify-content : space-between;
@@ -1184,4 +1221,7 @@ pre {
11841221 .lg\:w-1\/ 3 {
11851222 width : 33.333333% ;
11861223 }
1224+ }
1225+
1226+ @media (min-width : 1280px ) {
11871227}
0 commit comments