diff --git a/src/icons.css b/src/icons.css index 42d7cd3..20f035e 100644 --- a/src/icons.css +++ b/src/icons.css @@ -119,4 +119,16 @@ mask-repeat: no-repeat; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; +} + +.material-symbols--globe { + display: inline-block; + --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 22q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22m0-2q3.35 0 5.675-2.325T20 12q0-.175-.012-.363t-.013-.312q-.125.725-.675 1.2T18 13h-2q-.825 0-1.412-.587T14 11v-1h-4V8q0-.825.588-1.412T12 6h1q0-.575.313-1.012t.762-.713q-.5-.125-1.012-.2T12 4Q8.65 4 6.325 6.325T4 12h5q1.65 0 2.825 1.175T13 16v1h-3v2.75q.5.125.988.188T12 20'/%3E%3C/svg%3E"); + background-color: currentColor; + -webkit-mask-image: var(--svg); + mask-image: var(--svg); + -webkit-mask-repeat: no-repeat; + mask-repeat: no-repeat; + -webkit-mask-size: 100% 100%; + mask-size: 100% 100%; } \ No newline at end of file diff --git a/src/static/github-mark.png b/src/static/github-mark.png new file mode 100644 index 0000000..6cb3b70 Binary files /dev/null and b/src/static/github-mark.png differ diff --git a/src/static/imagePageUtils.js b/src/static/imagePageUtils.js index db7639b..650c2a7 100644 --- a/src/static/imagePageUtils.js +++ b/src/static/imagePageUtils.js @@ -101,37 +101,37 @@ function getFit() { switch (fit) { case "contain": { FitContain.forEach((item) => - item.classList.add("text-orange-500", "font-bold") + item.classList.add("text-orange-400", "font-bold") ); FitCover.forEach((item) => - item.classList.remove("text-orange-500", "font-bold") + item.classList.remove("text-orange-400", "font-bold") ); FitFull.forEach((item) => - item.classList.remove("text-orange-500", "font-bold") + item.classList.remove("text-orange-400", "font-bold") ); break; } case "cover": { FitContain.forEach((item) => - item.classList.remove("text-orange-500", "font-bold") + item.classList.remove("text-orange-400", "font-bold") ); FitCover.forEach((item) => - item.classList.add("text-orange-500", "font-bold") + item.classList.add("text-orange-400", "font-bold") ); FitFull.forEach((item) => - item.classList.remove("text-orange-500", "font-bold") + item.classList.remove("text-orange-400", "font-bold") ); break; } case "full": { FitContain.forEach((item) => - item.classList.remove("text-orange-500", "font-bold") + item.classList.remove("text-orange-400", "font-bold") ); FitCover.forEach((item) => - item.classList.remove("text-orange-500", "font-bold") + item.classList.remove("text-orange-400", "font-bold") ); FitFull.forEach((item) => - item.classList.add("text-orange-500", "font-bold") + item.classList.add("text-orange-400", "font-bold") ); break; } diff --git a/src/static/tailwind.css b/src/static/tailwind.css index 89e688e..1a193c1 100644 --- a/src/static/tailwind.css +++ b/src/static/tailwind.css @@ -527,9 +527,6 @@ .invisible { visibility: hidden; } - .visible { - visibility: visible; - } .absolute { position: absolute; } @@ -754,9 +751,6 @@ .bg-orange-800 { background-color: var(--color-orange-800); } - .bg-orange-800\/50 { - background-color: color-mix(in oklab, var(--color-orange-800) 50%, transparent); - } .bg-orange-950 { background-color: var(--color-orange-950); } @@ -806,8 +800,14 @@ .text-gray-200 { color: var(--color-gray-200); } - .text-orange-500 { - color: var(--color-orange-500); + .text-gray-200\/75 { + color: color-mix(in oklab, var(--color-gray-200) 75%, transparent); + } + .text-orange-400 { + color: var(--color-orange-400); + } + .text-slate-700 { + color: var(--color-slate-700); } .text-white { color: var(--color-white); @@ -837,6 +837,13 @@ } } } + .hover\:text-orange-500 { + &:hover { + @media (hover: hover) { + color: var(--color-orange-500); + } + } + } .sm\:grid { @media (width >= 40rem) { display: grid; @@ -939,16 +946,36 @@ grid-template-columns: repeat(auto-fill,minmax(20%,1fr)); } } + .dark\:block { + @media (prefers-color-scheme: dark) { + display: block; + } + } + .dark\:hidden { + @media (prefers-color-scheme: dark) { + display: none; + } + } .dark\:bg-\[\#160606\] { @media (prefers-color-scheme: dark) { background-color: #160606; } } + .dark\:bg-orange-800\/50 { + @media (prefers-color-scheme: dark) { + background-color: color-mix(in oklab, var(--color-orange-800) 50%, transparent); + } + } .dark\:text-\[\#f9ebeb\] { @media (prefers-color-scheme: dark) { color: #f9ebeb; } } + .dark\:text-white { + @media (prefers-color-scheme: dark) { + color: var(--color-white); + } + } .\[\&\:not\(\:fullscreen\)\]\:object-cover { &:not(:fullscreen) { object-fit: cover; @@ -1070,6 +1097,17 @@ -webkit-mask-size: 100% 100%; mask-size: 100% 100%; } +.material-symbols--globe { + display: inline-block; + --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 22q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22m0-2q3.35 0 5.675-2.325T20 12q0-.175-.012-.363t-.013-.312q-.125.725-.675 1.2T18 13h-2q-.825 0-1.412-.587T14 11v-1h-4V8q0-.825.588-1.412T12 6h1q0-.575.313-1.012t.762-.713q-.5-.125-1.012-.2T12 4Q8.65 4 6.325 6.325T4 12h5q1.65 0 2.825 1.175T13 16v1h-3v2.75q.5.125.988.188T12 20'/%3E%3C/svg%3E"); + background-color: currentColor; + -webkit-mask-image: var(--svg); + mask-image: var(--svg); + -webkit-mask-repeat: no-repeat; + mask-repeat: no-repeat; + -webkit-mask-size: 100% 100%; + mask-size: 100% 100%; +} @keyframes spin { to { transform: rotate(360deg); diff --git a/src/static/utils.js b/src/static/utils.js index 0db4318..400e224 100644 --- a/src/static/utils.js +++ b/src/static/utils.js @@ -146,7 +146,7 @@ function getView() { const active = document.querySelectorAll(`[data-view="${view}"]`); if (active.length > 0) { active.forEach((item) => { - item.classList.add("text-orange-500"); + item.classList.add("text-orange-400"); }); } return view; @@ -182,7 +182,7 @@ function getImagesPerPage() { if (active.length > 0) { active.forEach((item) => { item.classList.add("underline"); - item.classList.add("text-orange-500"); + item.classList.add("text-orange-400"); item.classList.add("font-bold"); }); } @@ -219,7 +219,7 @@ function getVideosPerPage() { if (active.length > 0) { active.forEach((item) => { item.classList.add("underline"); - item.classList.add("text-orange-500"); + item.classList.add("text-orange-400"); item.classList.add("font-bold"); }); } diff --git a/src/templates/Components/Footer.tsx b/src/templates/Components/Footer.tsx index 818a0d6..c52ad4a 100644 --- a/src/templates/Components/Footer.tsx +++ b/src/templates/Components/Footer.tsx @@ -17,17 +17,18 @@ export default function Footer() {

Find us on:

github + github - - website + +
diff --git a/src/templates/Components/ImagePageNavigation.tsx b/src/templates/Components/ImagePageNavigation.tsx index bfe5cdf..d7cfbbd 100644 --- a/src/templates/Components/ImagePageNavigation.tsx +++ b/src/templates/Components/ImagePageNavigation.tsx @@ -1,9 +1,9 @@ export default function ImagePageNav() { return ( -
+