fix: styles
This commit is contained in:
parent
dcce613295
commit
6ac50af454
10 changed files with 20 additions and 20 deletions
10
package-lock.json
generated
10
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.6.1",
|
"version": "24.6.2",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.6.1",
|
"version": "24.6.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.5.0",
|
"@cdransf/api-text": "^1.5.0",
|
||||||
|
@ -3221,9 +3221,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/picocolors": {
|
"node_modules/picocolors": {
|
||||||
"version": "1.0.1",
|
"version": "1.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz",
|
||||||
"integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==",
|
"integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.6.1",
|
"version": "24.6.2",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -263,7 +263,7 @@ table {
|
||||||
display: block;
|
display: block;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: 1px solid var(--gray-light);
|
border: var(--border-gray);
|
||||||
border-radius: var(--border-radius-slight);
|
border-radius: var(--border-radius-slight);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
caption-side: bottom;
|
caption-side: bottom;
|
||||||
|
@ -278,12 +278,12 @@ td {
|
||||||
}
|
}
|
||||||
|
|
||||||
:is(th, td):not(:first-child, :last-child) {
|
:is(th, td):not(:first-child, :last-child) {
|
||||||
border-right: 1px solid var(--gray-light);
|
border-right: var(--border-gray);
|
||||||
}
|
}
|
||||||
|
|
||||||
th,
|
th,
|
||||||
tr:not(:last-child) {
|
tr:not(:last-child) {
|
||||||
border-bottom: 1px solid var(--gray-light);
|
border-bottom: var(--border-gray);
|
||||||
}
|
}
|
||||||
|
|
||||||
th,
|
th,
|
||||||
|
@ -394,7 +394,7 @@ article {
|
||||||
|
|
||||||
.status,
|
.status,
|
||||||
.posts-wrapper article {
|
.posts-wrapper article {
|
||||||
border-bottom: 1px solid var(--gray-light);
|
border-bottom: var(--border-gray);
|
||||||
}
|
}
|
||||||
|
|
||||||
.status p:first-child {
|
.status p:first-child {
|
||||||
|
@ -402,7 +402,7 @@ article {
|
||||||
}
|
}
|
||||||
|
|
||||||
.article-widget-wrapper {
|
.article-widget-wrapper {
|
||||||
border-bottom: 1px solid var(--gray-light);
|
border-bottom: var(--border-gray);
|
||||||
margin-bottom: var(--spacing-base);
|
margin-bottom: var(--spacing-base);
|
||||||
|
|
||||||
& article {
|
& article {
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
border-radius: var(--border-radius-slight);
|
border-radius: var(--border-radius-slight);
|
||||||
transition-property: border-color;
|
transition-property: border-color;
|
||||||
transition-timing-function: var(--transition-ease-in-out);
|
transition-timing-function: var(--transition-ease-in-out);
|
||||||
transition-duration: 300ms;
|
transition-duration: var(--transition-duration-default);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -109,11 +109,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#menu-toggle:checked ~ .menu-primary li {
|
#menu-toggle:checked ~ .menu-primary li {
|
||||||
border-bottom: 1px solid var(--gray-light);
|
border-bottom: var(--border-gray);
|
||||||
height: calc(var(--sizing-3xl) * 1.5);
|
height: calc(var(--sizing-3xl) * 1.5);
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
border-top: 1px solid var(--gray-light);
|
border-top: var(--border-gray);
|
||||||
}
|
}
|
||||||
|
|
||||||
& a,
|
& a,
|
||||||
|
|
|
@ -72,6 +72,6 @@
|
||||||
max-height: 75%;
|
max-height: 75%;
|
||||||
max-width: 75%;
|
max-width: 75%;
|
||||||
inset: 12.5%;
|
inset: 12.5%;
|
||||||
border: 1px solid var(--gray-light);
|
border: var(--border-gray);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
height: var(--sizing-lg);
|
height: var(--sizing-lg);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: rgba(217, 222, 228, .6);
|
background-color: #d9dee499;
|
||||||
border-radius: var(--border-radius-full);
|
border-radius: var(--border-radius-full);
|
||||||
|
|
||||||
& .progress-bar {
|
& .progress-bar {
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
aspect-ratio: var(--aspect-ratio-vertical);
|
aspect-ratio: var(--aspect-ratio-vertical);
|
||||||
transition-property: border-color;
|
transition-property: border-color;
|
||||||
transition-timing-function: var(--transition-ease-in-out);
|
transition-timing-function: var(--transition-ease-in-out);
|
||||||
transition-duration: 300ms;
|
transition-duration: var(--transition-duration-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
& a:focus img,
|
& a:focus img,
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
margin-bottom: var(--spacing-base);
|
margin-bottom: var(--spacing-base);
|
||||||
|
|
||||||
& .link-box {
|
& .link-box {
|
||||||
border: 1px solid var(--gray-light);
|
border: var(--border-gray);
|
||||||
border-radius: var(--border-radius-slight);
|
border-radius: var(--border-radius-slight);
|
||||||
padding: var(--spacing-xs) var(--spacing-sm);
|
padding: var(--spacing-xs) var(--spacing-sm);
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,7 +65,7 @@ a:active > .watching.hero::after {
|
||||||
border-radius: var(--border-radius-slight);
|
border-radius: var(--border-radius-slight);
|
||||||
transition-property: border-color;
|
transition-property: border-color;
|
||||||
transition-timing-function: var(--transition-ease-in-out);
|
transition-timing-function: var(--transition-ease-in-out);
|
||||||
transition-duration: 300ms;
|
transition-duration: var(--transition-duration-default);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -147,7 +147,7 @@ a:active > .watching.hero::after {
|
||||||
border-radius: var(--border-radius-slight);
|
border-radius: var(--border-radius-slight);
|
||||||
transition-property: border-color;
|
transition-property: border-color;
|
||||||
transition-timing-function: var(--transition-ease-in-out);
|
transition-timing-function: var(--transition-ease-in-out);
|
||||||
transition-duration: 300ms;
|
transition-duration: var(--transition-duration-default);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue