diff --git a/.gitignore b/.gitignore index 3c3629e6..a385b876 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,44 @@ -node_modules +# ignore everything in the root except the "wp-content" directory. +/* +!wp-content/ + +# ignore everything in the "wp-content" directory, except: +# mu-plugins, plugins, and themes directories +wp-content/* +!wp-content/mu-plugins/ +!wp-content/plugins/ +!wp-content/themes/ + +# ignore all mu-plugins, plugins, and themes +# unless explicitly whitelisted at the end of this file +wp-content/mu-plugins/* +wp-content/plugins/* +wp-content/themes/* + +# ignore all files starting with . or ~ +.* +~* + +# ignore node dependency directories (used by grunt) +node_modules/ + +# ignore OS generated files +ehthumbs.db +Thumbs.db + +# ignore log files and databases +*.log +*.sql +*.sqlite + +# ------------------------- +# BEGIN Whitelisted Files +# ------------------------- + +# track these files, if they exist +!.gitignore +!.editorconfig +!.phpcs.xml.dist +!README.md +!CHANGELOG.md +!composer.json \ No newline at end of file diff --git a/css/app.css b/css/app.css index 5503d44e..fc31c403 100644 --- a/css/app.css +++ b/css/app.css @@ -593,11 +593,11 @@ video { text-transform: uppercase; }main p a{ --tw-text-opacity: 1; - color: rgb(28 100 242 / var(--tw-text-opacity)); + color: rgb(104 117 245 / var(--tw-text-opacity)); text-decoration-line: underline; }main p a:hover{ --tw-text-opacity: 1; - color: rgb(141 162 251 / var(--tw-text-opacity)); + color: rgb(205 219 254 / var(--tw-text-opacity)); }h1,h2,h3,h4,h5,h6{ --tw-text-opacity: 1; color: rgb(54 47 120 / var(--tw-text-opacity)); @@ -619,7 +619,6 @@ video { font-size: 1.875rem; line-height: 2.25rem; font-weight: 800; - line-height: 2; }@media (min-width: 768px){h2{ font-size: 3rem; line-height: 1; @@ -3141,6 +3140,9 @@ video { }.text-indigo-400{ --tw-text-opacity: 1; color: rgb(141 162 251 / var(--tw-text-opacity)); +}.text-indigo-500{ + --tw-text-opacity: 1; + color: rgb(104 117 245 / var(--tw-text-opacity)); }.text-indigo-700{ --tw-text-opacity: 1; color: rgb(81 69 205 / var(--tw-text-opacity)); diff --git a/header.php b/header.php index b9cbf685..0bd92d33 100644 --- a/header.php +++ b/header.php @@ -1,6 +1,15 @@ >
+ + + diff --git a/resources/css/base.css b/resources/css/base.css index 409b9831..c9430b02 100644 --- a/resources/css/base.css +++ b/resources/css/base.css @@ -17,7 +17,7 @@ @apply flex items-center justify-center text-xl font-[900] uppercase; } main p a{ - @apply text-blue-600 underline hover:text-indigo-400; + @apply text-indigo-500 underline hover:text-indigo-200; } h1,h2,h3,h4,h5,h6 { @apply text-indigo-900; @@ -27,7 +27,7 @@ @apply mb-5 text-3xl font-extrabold text-indigo-900 md:text-6xl ; } h2 { - @apply mt-10 mb-5 text-3xl font-extrabold leading-loose md:text-5xl; + @apply mt-10 mb-5 text-3xl font-extrabold md:text-5xl; } h3 { @apply mb-5 text-2xl font-extrabold md:text-4xl;