/* Tailwind CSS - Custom Build for Content Layout Plugin */
/* Base Styles */
* {
box-sizing: border-box;
}
/* Container */
.max-w-7xl {
max-width: 80rem;
margin-left: auto;
margin-right: auto;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
}
/* Padding */
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.py-10 {
padding-top: 2.5rem;
padding-bottom: 2.5rem;
}
.py-5 {
padding-top: 1.25rem;
padding-bottom: 1.25rem;
}
.px-6 {
padding-left: 1.5rem;
padding-right: 1.5rem;
}
/* Flexbox */
.flex {
display: flex;
}
.flex-col {
flex-direction: column;
}
.flex-row {
flex-direction: row;
}
.flex-nowrap {
flex-wrap: nowrap;
}
.items-center {
align-items: center;
}
.justify-center {
justify-content: center;
}
/* Gap */
.gap-10 {
gap: 2.5rem;
}
.gap-3 {
gap: 0.75rem;
}
.gap-2 {
gap: 0.5rem;
}
/* Width */
.w-full {
width: 100%;
}
.w-1\/2 {
width: 50%;
}
.w-10 {
width: 2.5rem;
}
.h-10 {
height: 2.5rem;
}
/* Responsive */
@media (min-width: 1024px) {
.lg\:flex-row {
flex-direction: row;
}
.lg\:flex-nowrap {
flex-wrap: nowrap;
}
.lg\:w-1\/2 {
width: 50%;
}
}
@media (min-width: 768px) {
.md\:text-base {
font-size: 1rem;
line-height: 1.5rem;
}
}
/* Typography */
.text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.text-lg {
font-size: 1.125rem;
line-height: 1.75rem;
}
.text-sm {
font-size: 0.875rem;
line-height: 1.25rem;
}
.text-\[15px\] {
font-size: 15px;
}
.font-bold {
font-weight: 700;
}
.font-semibold {
font-weight: 600;
}
/* Colors */
.text-gray-900 {
color: #111827;
}
.text-gray-800 {
color: #1f2937;
}
.text-gray-600 {
color: #4b5563;
}
.text-sky-700 {
color: #0369a1;
}
/* Background Colors */
.bg-sky-50 {
background-color: #f0f9ff;
}
.bg-sky-100 {
background-color: #e0f2fe;
}
/* Border */
.border {
border-width: 1px;
}
.border-sky-100 {
border-color: #e0f2fe;
}
.border-t {
border-top-width: 1px;
}
.rounded-3xl {
border-radius: 1.5rem;
}
.rounded-2xl {
border-radius: 1rem;
}
/* Shadow */
.shadow-sm {
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
/* Spacing */
.mb-4 {
margin-bottom: 1rem;
}
.space-y-3 > * + * {
margin-top: 0.75rem;
}
/* Display */
.block {
display: block;
}
.overflow-hidden {
overflow: hidden;
}
/* Inline Flex */
.inline-flex {
display: inline-flex;
}
/* Hover States */
.hover\:text-sky-700:hover {
color: #0369a1;
}
/* Prose Styles */
.prose {
color: #374151;
max-width: 65ch;
}
.prose p {
margin-top: 1.25em;
margin-bottom: 1.25em;
}
.prose h2 {
color: #111827;
font-weight: 600;
font-size: 1.5em;
margin-top: 2em;
margin-bottom: 1em;
line-height: 1.3333333;
}
.prose strong {
color: #111827;
font-weight: 600;
}
.prose-lg {
font-size: 1.125rem;
line-height: 1.7777778;
}
.prose-lg p {
margin-top: 1.3333333em;
margin-bottom: 1.3333333em;
}
.prose-lg h2 {
font-size: 1.8333333em;
margin-top: 0em;
margin-bottom: 1.1111111em;
line-height: 1.3;
}
.max-w-none {
max-width: none;
}
/* List Styles */
ol {
list-style-type: decimal;
margin: 0;
padding: 0;
}
ol li {
display: block;
padding: 0;
}
/* SVG Styles */
svg {
display: block;
vertical-align: middle;
}
/* Additional utility classes for the plugin */
.clp-container {
font-family: system-ui, -apple-system, sans-serif;
}
.clp-menu-container {
transition: all 0.3s ease;
}
.clp-menu-container:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.clp-menu-item {
text-decoration: none;
transition: color 0.2s ease;
}
.clp-menu-item:hover {
text-decoration: underline;
}
.clp-main-title {
scroll-margin-top: 2rem;
}
.clp-prose {
word-wrap: break-word;
}
.clp-prose a {
color: inherit;
text-decoration: underline;
font-weight: 500;
}
.clp-prose a:hover {
text-decoration: none;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.py-10 {
padding-top: 2rem;
padding-bottom: 2rem;
}
.gap-10 {
gap: 2rem;
}
.text-2xl {
font-size: 1.25rem;
line-height: 1.75rem;
}
.clp-menu-list {
font-size: 14px;
}
}
/* Print styles */
@media print {
.clp-container {
background: white !important;
color: black !important;
}
.clp-menu-container {
border: 1px solid #ccc !important;
box-shadow: none !important;
}
.clp-menu-item {
color: black !important;
}
}
