2024-08-03 09:03:06 +05:30

126 lines
1.2 KiB
CSS

/* Customize.css */
body {
font-family: 'Helvetica', 'Arial', sans-serif;
}
.flex {
display: flex;
}
.h-screen {
height: 100vh;
}
.bg-white {
background-color: #fff;
}
.p-4 {
padding: 1rem;
}
.p-6 {
padding: 1.5rem;
}
.p-8 {
padding: 2rem;
}
.shadow-lg {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.rounded-lg {
border-radius: 0.5rem;
}
.w-half{
width: 33.333333%;
}
.w-full {
width: 100%;
}
.h-auto {
height: auto;
}
.mt-1 {
margin-top: 0.25rem;
}
.mb-4 {
margin-bottom: 1rem;
}
.mr-4 {
margin-right: 1rem;
}
.text-lg {
font-size: 1.125rem;
}
.text-2xl {
font-size: 1.5rem;
}
.text-sm {
font-size: 0.875rem;
}
.text-gray-700 {
color: #4a5568;
}
.font-medium {
font-weight: 500;
}
.items-center {
align-items: center;
}
.items-stretch {
align-items: stretch;
}
.flex-grow {
flex-grow: 1;
}
.bg-blue-600 {
background-color: #3182ce;
}
.bg-blue-700 {
background-color: #2b6cb0;
}
.text-white {
color: #fff;
}
.border {
border-width: 1px;
}
.border-gray-300 {
border-color: #d2d6dc;
}
.rounded-md {
border-radius: 0.375rem;
}
.hover\:bg-blue-700:hover {
background-color: #2b6cb0;
}
.block {
display: block;
}