chore: spacing
This commit is contained in:
parent
5e6c3ef503
commit
5204abbc3b
6 changed files with 27 additions and 24 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.5.30",
|
"version": "19.5.31",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.5.30",
|
"version": "19.5.31",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.5.30",
|
"version": "19.5.31",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -183,9 +183,12 @@ h5 { font-size: var(--font-size-md) }
|
||||||
h6 { font-size: var(--font-size-sm) }
|
h6 { font-size: var(--font-size-sm) }
|
||||||
|
|
||||||
.section-header-wrapper {
|
.section-header-wrapper {
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
margin: var(--sizing-xl) 0 var(--sizing-lg);
|
||||||
|
|
||||||
|
& .section-header {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-header {
|
.section-header {
|
||||||
|
@ -201,14 +204,12 @@ h6 { font-size: var(--font-size-sm) }
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-header-buttons {
|
.section-header-buttons {
|
||||||
margin: 0 0 var(--sizing-lg);
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--sizing-sm);
|
||||||
|
|
||||||
& > button {
|
& > button {
|
||||||
margin-bottom: var(--sizing-sm) !important;
|
margin-bottom: 0 !important;
|
||||||
|
|
||||||
&:last-of-type {
|
|
||||||
margin-right: 0 !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -604,14 +605,6 @@ li {
|
||||||
max-width: 768px;
|
max-width: 768px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-header-wrapper {
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-header-buttons {
|
|
||||||
margin: var(--sizing-md) 0 var(--sizing-lg);
|
|
||||||
}
|
|
||||||
|
|
||||||
footer nav.social {
|
footer nav.social {
|
||||||
gap: var(--sizing-md);
|
gap: var(--sizing-md);
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ button {
|
||||||
background-color: var(--accent-color);
|
background-color: var(--accent-color);
|
||||||
appearance: none;
|
appearance: none;
|
||||||
border: 2px solid var(--accent-color);
|
border: 2px solid var(--accent-color);
|
||||||
transition-property: all;
|
transition-property: border;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:not(.theme-toggle, .active):hover,
|
&:not(.theme-toggle, .active):hover,
|
||||||
|
@ -27,17 +27,23 @@ button {
|
||||||
transition-duration: var(--transition-duration-default);
|
transition-duration: var(--transition-duration-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:not(.active):hover,
|
|
||||||
&:not(.active):active,
|
|
||||||
&:not(.active):focus,
|
&:not(.active):focus,
|
||||||
&:not(.active):focus-within {
|
&:not(.active):focus-within {
|
||||||
|
transition-property: none;
|
||||||
outline: 2px dashed var(--accent-color);
|
outline: 2px dashed var(--accent-color);
|
||||||
|
padding: calc(var(--sizing-sm) + 2px) calc(var(--sizing-lg) + 2px);
|
||||||
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.small {
|
&.small {
|
||||||
font-size: var(--font-size-sm);
|
font-size: var(--font-size-sm);
|
||||||
line-height: var(--line-height-sm);
|
line-height: var(--line-height-sm);
|
||||||
padding: var(--sizing-xs) var(--sizing-sm);
|
padding: var(--sizing-xs) var(--sizing-sm);
|
||||||
|
|
||||||
|
&:not(.active):focus,
|
||||||
|
&:not(.active):focus-within {
|
||||||
|
padding: var(--sizing-xs) calc(var(--sizing-sm) + 2px);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.secondary {
|
&.secondary {
|
||||||
|
|
|
@ -50,11 +50,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
& a:hover img,
|
& a:hover img,
|
||||||
& a:focus img,
|
|
||||||
& a:active img {
|
& a:active img {
|
||||||
border-color: var(--accent-color-hover)
|
border-color: var(--accent-color-hover)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
& a:focus img,
|
||||||
|
& a:focus-within img {
|
||||||
|
border: 0
|
||||||
|
}
|
||||||
|
|
||||||
& .meta-text {
|
& .meta-text {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
|
@ -29,7 +29,7 @@ schema: music-index
|
||||||
</a>
|
</a>
|
||||||
</h3>
|
</h3>
|
||||||
{% render "partials/media/grid.liquid", data:music.week.albums, shape: "square", count: 8 %}
|
{% render "partials/media/grid.liquid", data:music.week.albums, shape: "square", count: 8 %}
|
||||||
<div class="section-header-wrapper">
|
<div class="section-header-wrapper flex-centered">
|
||||||
<h3 id="tracks" class="section-header">
|
<h3 id="tracks" class="section-header">
|
||||||
<a class="link-icon" href="/music/tracks/this-week">
|
<a class="link-icon" href="/music/tracks/this-week">
|
||||||
{% tablericon "playlist" "Tracks" %}
|
{% tablericon "playlist" "Tracks" %}
|
||||||
|
|
Reference in a new issue