chore: colocate styles
This commit is contained in:
parent
0811a699fb
commit
3a09be8d3f
6 changed files with 39 additions and 42 deletions
|
@ -1,9 +1,10 @@
|
||||||
<script type="module" src="/assets/scripts/components/theme-toggle.js"></script>
|
<script type="module" src="/assets/scripts/components/theme-toggle.js"></script>
|
||||||
|
{% capture css %}
|
||||||
|
{% render "../../../assets/styles/components/theme-toggle.css" %}
|
||||||
|
{% endcapture %}
|
||||||
|
<style>{{ css }}</style>
|
||||||
<template id="theme-toggle-template">
|
<template id="theme-toggle-template">
|
||||||
<div class="theme__toggle">
|
<div class="theme__toggle">
|
||||||
<span class="placeholder">
|
|
||||||
{% tablericon "placeholder" "Toggle theme placeholder" %}
|
|
||||||
</span>
|
|
||||||
<span class="light">
|
<span class="light">
|
||||||
{% tablericon "sun" "Toggle light theme" %}
|
{% tablericon "sun" "Toggle light theme" %}
|
||||||
</span>
|
</span>
|
||||||
|
|
|
@ -5,6 +5,6 @@
|
||||||
<div class="dark:text-white text-gray-800">
|
<div class="dark:text-white text-gray-800">
|
||||||
<p>I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, <a href="https://last.fm/user/coryd_" rel="noopener noreferrer">music</a>, writing, <a href="https://app.thestorygraph.com/profile/coryd" rel="noopener noreferrer">reading</a>, <a href="https://trakt.tv/users/cdransf" rel="noopener noreferrer">tv</a> and <a href="https://trakt.tv/users/cdransf" rel="noopener noreferrer">movies</a>.</p>
|
<p>I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, <a href="https://last.fm/user/coryd_" rel="noopener noreferrer">music</a>, writing, <a href="https://app.thestorygraph.com/profile/coryd" rel="noopener noreferrer">reading</a>, <a href="https://trakt.tv/users/cdransf" rel="noopener noreferrer">tv</a> and <a href="https://trakt.tv/users/cdransf" rel="noopener noreferrer">movies</a>.</p>
|
||||||
{% render "partials/now/status.liquid", status:status %}
|
{% render "partials/now/status.liquid", status:status %}
|
||||||
{% render "partials/now/playing.liquid" %}
|
{% render "partials/now-playing.liquid" %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -2,7 +2,6 @@ const themeToggleTemplate = document.createElement('template')
|
||||||
|
|
||||||
themeToggleTemplate.innerHTML = `
|
themeToggleTemplate.innerHTML = `
|
||||||
<button class="theme__toggle">
|
<button class="theme__toggle">
|
||||||
<span class="placeholder"></span>
|
|
||||||
<span class="light"></span>
|
<span class="light"></span>
|
||||||
<span class="dark"></span>
|
<span class="dark"></span>
|
||||||
</button>
|
</button>
|
||||||
|
|
33
src/assets/styles/components/theme-toggle.css
Normal file
33
src/assets/styles/components/theme-toggle.css
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
.theme__toggle,
|
||||||
|
.theme__toggle svg {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme__toggle:hover,
|
||||||
|
.theme__toggle svg:hover {
|
||||||
|
stroke-width: var(--stroke-width-bold);
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme__toggle > .light svg { stroke: var(--sun) !important; }
|
||||||
|
.theme__toggle > .dark svg { stroke: var(--moon) !important; }
|
||||||
|
|
||||||
|
.theme__toggle > .light ,
|
||||||
|
.theme__toggle > .dark {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme__dark .theme__toggle > .light {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme__dark .theme__toggle > .dark {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme__light .theme__toggle > .light {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme__light .theme__toggle > .dark {
|
||||||
|
display: inline;
|
||||||
|
}
|
|
@ -204,9 +204,7 @@ a svg:hover,
|
||||||
a svg:active,
|
a svg:active,
|
||||||
a svg:focus,
|
a svg:focus,
|
||||||
button:hover svg,
|
button:hover svg,
|
||||||
button svg:hover,
|
button svg:hover {
|
||||||
.theme__toggle:hover,
|
|
||||||
.theme__toggle svg:hover {
|
|
||||||
stroke-width: var(--stroke-width-bold);
|
stroke-width: var(--stroke-width-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -501,40 +499,6 @@ footer nav {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* theme toggle */
|
|
||||||
.theme__toggle,
|
|
||||||
.theme__toggle svg {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme__toggle > .light svg { stroke: var(--sun) !important; }
|
|
||||||
.theme__toggle > .dark svg { stroke: var(--moon) !important; }
|
|
||||||
|
|
||||||
.theme__toggle > .light ,
|
|
||||||
.theme__toggle > .dark {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
:is(.theme__light, .theme__dark) .theme__toggle > .placeholder {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme__dark .theme__toggle > .light {
|
|
||||||
display: inline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme__dark .theme__toggle > .dark {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme__light .theme__toggle > .light {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme__light .theme__toggle > .dark {
|
|
||||||
display: inline;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* screens: md */
|
/* screens: md */
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
.main__title {
|
.main__title {
|
||||||
|
|
Reference in a new issue