Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 44 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -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
8 changes: 5 additions & 3 deletions css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand All @@ -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;
Expand Down Expand Up @@ -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));
Expand Down
9 changes: 9 additions & 0 deletions header.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-6F365PNSMS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-6F365PNSMS');
</script>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width">
<link rel="profile" href="http://gmpg.org/xfn/11">
Expand Down
4 changes: 2 additions & 2 deletions resources/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down