/*
Theme Name: Jazzler Lisa
Author: Ramon Ahnert
Author URI: https://profiles.wordpress.org/rahmohn/
Text Domain: jazzler-lisa
Version: 1.0.1
*/

.prose :where(p):not(:where([class~=not-prose] *)) {
	margin-top: 1.75rem;
	margin-bottom: 1.75rem;
	@apply text-lg;
}

.dark .prose :where(a):not(:where([class~=not-prose] *)) {
	color: #14b8a6;
}

.prose :where(a):not(:where([class~=not-prose] *)) {
	color: #0f766e;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(45, 212, 191, 0.3);
    transition-property: color,text-decoration-color;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}

.dark .prose :where(a:hover):not(:where([class~=not-prose] *)) {
	color: #14b8a6;
    text-decoration-color: #14b8a6;
}

.prose :where(a:hover):not(:where([class~=not-prose] *)) {
	color: #0f766e;
    text-decoration-color: #0f766e;
}

article h1 {
	@apply text-4xl my-7 font-bold;
}

article h2 {
	@apply text-3xl my-6 font-bold;
}

article h3 {
	@apply text-2xl my-5 font-bold;
}

article blockquote {
	@apply pl-5 ml-10;
	border-left: solid;
}

article ul {
	@apply ps-10 list-disc text-lg;
}

article ul ul {
	list-style: circle;
}

article ol {
	@apply ps-10 list-decimal text-lg;
}

article code {
	background-color: #282a36;
	color: #a1a1a1;
}

@tailwind base;
@tailwind components;
@tailwind utilities;