HTMLify

utility.css
Views: 53 | Author: cody
 .border {
     border: 2px solid red;
     margin: 3px;
 }

 .invert {
     filter: invert(1);
 }

 .flex {
     display: flex;
 }

 .gap {
     gap: 14px;
 }

 .justify-center {
     justify-content: center;
 }

 .items-center {
     align-items: center;
 }

 .flex-direction {
     flex-direction: column;
 }

 .bg-black {
     background-color: black;
 }

 .bg-grey {
     background-color: #191919;
 }

 .rounded {
     border-radius: 8px;
 }

 .m-1 {
     margin: 5px;
 }

 .p-1 {
     padding: 18px;
 }

 .p-2 {
     padding: 10px;
 }


 ::-webkit-scrollbar {
     width: 12px;
 }

 ::-webkit-scrollbar-thumb {
     background-color: #333;
     border-radius: 2px;
 }

 ::-webkit-scrollbar-track {
     background-color: #222;

 }

Comments