site/style.css

948 lines
21 KiB
CSS
Raw Normal View History

/* background wallpaper, global font */
2024-04-19 17:16:50 -05:00
body {
2024-05-31 09:20:16 -05:00
background: linear-gradient(125deg, var(--pink), var(--mauve), var(--maroon), var(--peach), var(--teal));
background-size: 1000% 1000%;
animation: bg-gradient 10s ease infinite;
-moz-animation: bg-gradient 10s ease infinite;
-webkit-animation: bg-gradient 10s ease infinite;
2024-04-19 17:16:50 -05:00
font-family: "JetBrains Mono";
2024-09-28 01:25:39 -05:00
font-size: 1.125rem;
2024-08-11 13:44:26 -05:00
margin: unset !important; /* idk why it does that */
2024-04-19 17:16:50 -05:00
}
/* terminal window styling */
2024-04-19 17:16:50 -05:00
.terminal {
/* the titlebar of the terminals */
.term-titlebar {
display: grid;
2024-08-11 13:44:26 -05:00
grid-template-columns: 2fr auto 2fr;
2024-04-19 17:16:50 -05:00
grid-template-areas:
"term-icon term-title term-buttons";
margin: -10px 0px -20px;
/* terminal icon */
.ph-terminal {
font-size: 25px;
2024-04-19 17:16:50 -05:00
align-self: center;
}
/* title text */
2024-04-19 23:26:23 -05:00
p, a {
2024-04-19 17:16:50 -05:00
font-family: "Lexend Deca";
font-size: 16px;
2024-04-19 23:26:23 -05:00
color: var(--text);
text-decoration: none;
2024-04-19 17:16:50 -05:00
grid-column: 2;
}
/* window buttons */
div {
display: flex;
height: 22px;
align-self: center;
margin-left: auto;
#minimize-btn, #maximize-btn, #close-btn {
2024-04-19 17:16:50 -05:00
width: 22px;
height: 22px;
background: var(--surface2);
border-radius: 50%;
transition: .2s background;
}
#maximize-btn, #close-btn {
2024-04-19 17:16:50 -05:00
margin-left: 10px;
}
}
}
/* the prompt */
.term-input {
.folder {
color: var(--sapphire);
background-color: var(--crust);
border-radius: 3em;
padding: 0px 12px 0px 12px;
}
.status {
color: var(--green);
font-size: 24px;
margin-left: 3px;
margin-right: -8px;
vertical-align: middle;
}
.blink {
display: none;
color: var(--text);
margin-left: 3px;
padding-bottom: 4px;
animation: blink .8s linear infinite;
2024-05-31 09:20:16 -05:00
-moz-animation: blink .8s linear infinite;
-webkit-animation: blink .8s linear infinite;
}
}
2024-04-19 17:16:50 -05:00
background-color: var(--base);
color: var(--text);
border: var(--mantle) solid 3px;
border-radius: 20px;
max-width: 48em;
padding: 14px 24px;
2023-11-03 17:50:44 -05:00
margin-left: auto;
margin-right: auto;
2024-04-19 17:16:50 -05:00
margin-bottom: 3.4em;
2024-04-19 17:16:50 -05:00
transition: .2s border-color;
2024-04-19 17:16:50 -05:00
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
2024-04-19 17:16:50 -05:00
.terminal:hover {
.term-titlebar {
div {
#minimize-btn {
background: var(--yellow);
transition: .2s background;
}
2024-04-19 17:16:50 -05:00
#maximize-btn {
background: var(--green);
transition: .2s background;
}
2023-11-05 18:28:10 -06:00
2024-04-19 17:16:50 -05:00
#close-btn {
background: var(--red);
transition: .2s background;
}
}
}
.term-input {
.blink {
display: unset;
}
}
2024-04-19 17:16:50 -05:00
border-color: var(--green);
2024-04-19 17:16:50 -05:00
transition: .2s border-color;
2023-11-12 03:20:34 -06:00
}
2024-04-19 23:26:23 -05:00
.terminal > .term-titlebar > p:hover, a:hover {
text-decoration: underline;
}
2023-11-12 03:20:34 -06:00
/* top navbar styling, attempts to look like a window manager bar */
2024-08-11 13:44:26 -05:00
.navbar {
2024-08-11 23:58:04 -05:00
display: flex;
flex-direction: row;
2024-08-11 13:44:26 -05:00
position: fixed;
top: 0 !important;
2024-08-11 13:48:17 -05:00
z-index: 10;
2024-08-11 13:44:26 -05:00
min-width: 100%;
max-width: 100%;
2024-08-11 23:58:04 -05:00
min-height: 1.8em !important;
max-height: 1.8em !important;
margin-top: .5em;
2024-08-11 13:44:26 -05:00
2024-08-11 13:49:43 -05:00
font-family: "Lexend Deca";
2024-08-11 13:44:26 -05:00
align-content: center;
vertical-align: middle;
color: var(--text);
.nav-base {
2024-08-11 23:58:04 -05:00
padding: 0px .2em !important;
2024-08-11 13:44:26 -05:00
border-radius: 8px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 15px;
max-width: fit-content;
align-content: center;
}
.nav-baselink {
background-color: var(--green);
text-decoration: unset !important;
color: var(--crust);
2024-08-11 23:58:04 -05:00
margin-left: .5em !important;
2024-08-11 13:44:26 -05:00
}
.mobile-dropdown {
2024-08-11 13:44:26 -05:00
display: none;
}
.nav-links {
background-color: var(--base);
color: var(--text);
padding: 0px 5px 0px;
2024-08-11 23:58:04 -05:00
margin-left: .5em !important;
2024-08-11 13:44:26 -05:00
}
.nav-links a {
color: var(--text);
text-decoration: unset !important;
}
.nav-links a:hover {
color: var(--green);
text-decoration: underline !important;
}
.nav-systray {
background-color: var(--crust);
color: var(--text);
2024-08-11 23:58:04 -05:00
margin-left: auto !important;
margin-right: .5em !important;
2024-08-11 13:44:26 -05:00
i {
padding: 0px 2px 0px 2px;
}
}
a, p {
margin: unset !important;
}
small {
opacity: .7;
}
}
/* text formatting and config stuff
font-family and <p> is set under .terminal */
2023-11-12 03:20:34 -06:00
/* headings */
2024-04-19 23:26:23 -05:00
h1, h1 a {
color: var(--text);
2024-04-19 17:16:50 -05:00
font-size: 32px;
2024-04-19 23:26:23 -05:00
text-decoration: none;
2023-11-12 03:20:34 -06:00
}
/* apparently having more than one h1 is against web standards
but i prefer how it looks so i just use the same styling again */
h2, h2 a {
color: var(--text);
2024-09-28 01:25:39 -05:00
font-size: 2rem;
text-decoration: none;
2023-11-12 03:20:34 -06:00
}
2024-04-19 17:16:50 -05:00
h3 {
2024-09-28 01:25:39 -05:00
font-size: 2rem;
2023-11-12 03:20:34 -06:00
}
/* text */
p, li, button {
2024-09-28 01:25:39 -05:00
font-size: 1.125rem;
2023-11-12 13:42:49 -06:00
}
2024-04-19 17:16:50 -05:00
/* links should look good i think */
a {
2024-09-28 01:25:39 -05:00
font-size: 1.125rem;
2024-04-19 17:16:50 -05:00
color: var(--green);
2023-11-15 09:54:00 -06:00
}
2024-04-19 17:16:50 -05:00
/* smol text */
2024-06-05 00:30:27 -05:00
small, small a {
2024-09-28 01:25:39 -05:00
font-size: 0.875rem;
2023-11-14 22:55:10 -06:00
}
2024-04-19 17:16:50 -05:00
/* lists need some styling */
li {
margin-left: -1em;
2024-04-19 17:16:50 -05:00
padding-bottom: 18px;
2023-11-14 22:55:10 -06:00
}
2024-04-19 17:16:50 -05:00
/* gay ass text */
.rainbow {
animation: 2s linear infinite rainbow;
2024-05-31 09:20:16 -05:00
-webkit-animation: 2s linear infinite rainbow;
-moz-animation: 2s linear infinite rainbow;
2023-11-12 03:20:34 -06:00
}
2024-04-19 23:26:23 -05:00
/* heading 1 is also clickable */
h1 a:hover {
text-decoration: underline;
}
/* line seperator */
#seperator {
display: block;
height: 1px;
width: auto;
margin-top: 20px;
margin-bottom: 20px;
border-bottom: 1px var(--surface2) solid;
}
/* summary styling */
summary {
display: flex;
}
summary::after {
font-family: "Phosphor-Fill" !important;
content: '\e136';
align-self: center;
margin-left: .70em;
transition: 0.2s;
}
details[open] > summary::after {
transform: rotate(180deg);
}
2023-11-12 03:20:34 -06:00
/* about me section/first terminal */
2024-08-11 13:44:26 -05:00
.terminal:nth-child(2) {
2024-04-19 17:16:50 -05:00
margin-top: 3.8em;
2023-11-14 21:41:26 -06:00
}
#sneexy > section {
#pfp {
2024-04-19 17:16:50 -05:00
width: 256px;
height: 256px;
2023-11-14 22:55:10 -06:00
2024-04-19 17:16:50 -05:00
animation: 3s linear infinite spin-y;
2023-11-03 21:41:40 -05:00
2024-04-19 17:16:50 -05:00
margin-top: 1em;
margin-bottom: 1em;
2024-01-02 15:27:20 -06:00
}
2024-04-19 17:16:50 -05:00
2024-09-22 01:05:55 -05:00
.selfinfo {
display: grid;
grid-template-areas:
"pronouns names";
div {
text-align: left;
border-radius: 1em;
padding: .7em 1em;
ul {
padding-left: 1em;
}
li {
padding-bottom: 6px !important;
list-style: none;
}
}
2024-09-22 01:05:55 -05:00
div:first-child {
background-color: color-mix(in srgb, var(--flamingo) 20%, transparent);
}
2024-09-22 01:05:55 -05:00
div:last-child {
background-color: color-mix(in srgb, var(--lavender) 20%, transparent);
margin-left: 1.5em;
}
}
2024-01-02 15:27:20 -06:00
h1 {
2024-04-19 17:16:50 -05:00
margin-bottom: 1px;
2024-01-02 15:27:20 -06:00
}
2024-04-19 17:16:50 -05:00
p {
margin-top: 3px;
2024-01-02 15:27:20 -06:00
}
2024-04-19 17:16:50 -05:00
text-align: center;
2024-01-02 21:23:57 -06:00
}
/* socials and links sections */
.socials-contacts-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
margin-bottom: .5em;
}
.social-container {
display: inline-flex;
align-items: center;
margin: .3em;
padding: .2em;
border-radius: 1em;
background-color: var(--crust);
p, a, small {
padding-left: 1mm;
padding-right: 1mm;
margin-top: .8mm;
margin-bottom: .8mm;
}
a i {
color: var(--text) !important;
font-size: 1.5em;
padding-left: .8mm;
padding-right: .8mm;
vertical-align: middle;
}
a:has(i) {
text-decoration: none !important;
}
}
#fedi {
background-color: color-mix(in srgb, var(--peach) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
p:hover, a:hover {
color: var(--peach);
text-decoration: underline;
small {
color: var(--peach) !important;
text-decoration: underline;
}
}
}
#email {
background-color: color-mix(in srgb, var(--red) 25%, transparent);
p, a {
color: var(--text);
text-decoration: none;
}
p:hover, a:hover {
color: var(--red);
text-decoration: underline;
}
i {
color: var(--text) !important;
font-size: 1.5em;
padding-left: 1.8mm;
padding-right: 2.8mm;
vertical-align: middle;
}
}
#listenbrainz {
background-color: color-mix(in srgb, var(--mauve) 25%, transparent);
p, a {
color: var(--text);
text-decoration: none;
}
p:hover, a:hover {
color: var(--mauve);
text-decoration: underline;
}
}
#gitgay {
background-color: color-mix(in srgb, var(--red) 10%, transparent);
p, a {
color: var(--text);
text-decoration: none;
}
p:hover, a:hover {
color: var(--mauve);
text-decoration: underline;
}
}
#blog {
background-color: color-mix(in srgb, var(--pink) 10%, transparent);
p, a {
color: var(--text);
text-decoration: none;
}
p:hover, a:hover {
color: var(--pink);
text-decoration: underline;
}
}
#music {
background-color: color-mix(in srgb, var(--sky) 10%, transparent);
p, a {
color: var(--text);
text-decoration: none;
}
p:hover, a:hover {
color: var(--sky);
text-decoration: underline;
}
}
#shitposts {
background-color: color-mix(in srgb, var(--red) 10%, transparent);
p, a {
color: var(--text);
text-decoration: none;
}
p:hover, a:hover {
color: var(--red);
text-decoration: underline;
}
}
#internet-archive {
background-color: color-mix(in srgb, var(--overlay2) 10%, transparent);
p, a {
color: var(--text);
text-decoration: none;
}
p:hover, a:hover {
color: var(--text);
text-decoration: underline;
}
}
/* quotes section */
2024-06-05 00:30:27 -05:00
.quotes-container {
display: inline-block;
text-align: center;
margin: .3em;
padding: .2em;
border-radius: 1em;
background-color: var(--crust);
p, a, small {
padding-left: 1mm;
padding-right: 1mm;
margin-top: .8mm;
margin-bottom: .8mm;
}
}
2024-06-05 00:30:27 -05:00
#limineow {
background-color: color-mix(in srgb, var(--red) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--red);
text-decoration: underline;
small {
color: var(--red) !important;
text-decoration: underline;
}
}
}
2024-06-05 00:30:27 -05:00
#bready {
background-color: color-mix(in srgb, var(--peach) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--peach);
text-decoration: underline;
small {
color: var(--peach) !important;
text-decoration: underline;
}
}
}
2024-06-05 00:30:27 -05:00
#mikoto {
background-color: color-mix(in srgb, var(--lavender) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--lavender);
text-decoration: underline;
small {
color: var(--lavender) !important;
text-decoration: underline;
}
}
}
2024-06-05 00:30:27 -05:00
#av70 {
background-color: color-mix(in srgb, var(--mauve) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--mauve);
text-decoration: underline;
small {
color: var(--mauve) !important;
text-decoration: underline;
}
}
}
2024-06-05 00:30:27 -05:00
#vozy {
background-color: color-mix(in srgb, var(--pink) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--pink);
text-decoration: underline;
small {
color: var(--pink) !important;
text-decoration: underline;
}
}
}
2024-06-05 00:30:27 -05:00
#guigui {
background-color: color-mix(in srgb, var(--green) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--green);
text-decoration: underline;
small {
color: var(--green) !important;
text-decoration: underline;
}
}
}
2024-06-05 00:30:27 -05:00
#binbows {
background-color: color-mix(in srgb, var(--crust) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--text);
text-decoration: underline;
small {
color: var(--text) !important;
text-decoration: underline;
}
}
}
/* buttons section !! */
2024-04-19 22:23:49 -05:00
.buttons {
font-size: 0px;
img {
margin-right: 5px;
image-rendering: auto;
image-rendering: crisp-edges;
image-rendering: pixelated;
2024-04-19 22:23:49 -05:00
}
}
/* custom css window */
2024-09-21 23:11:07 -05:00
#css {
style {
display: block;
padding: 1em;
margin-bottom: 1em;
width: auto;
height: auto;
background-color: var(--surface0);
border-radius: 1em;
white-space: break-spaces;
}
}
/* footer/credits */
2024-04-19 17:16:50 -05:00
footer {
.fediring {
a {
display: inline-grid;
2024-09-28 01:25:39 -05:00
font-size: 1.5rem;
color: var(--green);
margin-bottom: .5em;
vertical-align: bottom;
}
[href="https://fediring.net"] {
color: var(--base);
background: var(--flamingo);
padding: 0px 10px 0px 10px;
border-radius: 5px;
}
2024-09-12 21:34:31 -05:00
[href="https://keithhacks.cyou/furryring.php"] {
color: var(--base);
background: var(--rosewater);
padding: 0px 10px 0px 10px;
border-radius: 5px;
}
[href="https://stellophiliac.github.io/roboring"] {
@media (prefers-color-scheme: light) {
color: var(--base);
}
@media (prefers-color-scheme: dark) {
color: var(--text);
}
background: var(--overlay0);
padding: 0px 10px 0px 10px;
border-radius: 5px;
}
2024-09-12 21:34:31 -05:00
[href*="prev"] {
color: var(--base);
background: var(--yellow);
padding: 4px 6px;
border-radius: 5px;
}
[href*="next"] {
color: var(--base);
background: var(--green);
padding: 4px 5px;
border-radius: 5px;
}
}
2024-04-19 17:16:50 -05:00
p, a {
text-align: center;
2024-09-28 01:25:39 -05:00
font-size: 0.938rem;
margin: .2em 0px .2em;
text-decoration: none;
2024-01-02 21:23:57 -06:00
}
2024-04-19 17:16:50 -05:00
img {
padding-top: 18px;
2024-04-19 17:16:50 -05:00
max-width: 30%;
2024-01-02 21:23:57 -06:00
display: flex;
margin-left: auto;
margin-right: auto;
}
.inner-footer {
text-align: center;
padding-top: 14px;
padding-bottom: 14px;
i {
font-size: 2.4em;
}
a:not(:last-child):has(i) {
margin-right: 1em;
}
}
2024-04-19 17:16:50 -05:00
}
2024-01-02 21:23:57 -06:00
/* various reusable animations */
@keyframes blink {
0% { opacity: 0; }
50% { opacity: 1.0; }
100% { opacity: 0; }
}
2024-08-11 13:44:26 -05:00
@keyframes blink-navbar-text {
0% { opacity: 0; }
50% { opacity: .8; }
100% { opacity: 0; }
}
2024-04-19 17:16:50 -05:00
@keyframes spin-y {
/* values: 128px, 256px, 348px, 396px*/
0% { transform: perspective(396px) rotateY(0); }
100% { transform: perspective(396px) rotateY(360deg); }
}
2024-04-19 17:16:50 -05:00
@keyframes rainbow {
0% { filter: hue-rotate(0deg) contrast(150%) saturate(150%); }
2024-04-19 17:16:50 -05:00
100% { filter: hue-rotate(360deg) contrast(150%) saturate(150%); }
}
2024-05-31 09:20:16 -05:00
@keyframes bg-gradient {
0% { background-position: 0% 27% }
50% { background-position: 100% 74% }
100% { background-position: 0% 27% }
}
2024-05-31 09:20:16 -05:00
@-moz-keyframes blink {
0% { opacity: 0; }
50% { opacity: 1.0; }
100% { opacity: 0; }
}
2024-08-11 13:44:26 -05:00
@-moz-keyframes blink-navbar-text {
0% { opacity: 0; }
50% { opacity: .8; }
100% { opacity: 0; }
}
2024-05-31 09:20:16 -05:00
@-moz-keyframes spin-y {
/* values: 128px, 256px, 348px, 396px*/
0% { transform: perspective(396px) rotateY(0); }
100% { transform: perspective(396px) rotateY(360deg); }
}
2024-05-31 09:20:16 -05:00
@-moz-keyframes rainbow {
0% { filter: hue-rotate(0deg) contrast(150%) saturate(150%); }
100% { filter: hue-rotate(360deg) contrast(150%) saturate(150%); }
}
2024-05-31 09:20:16 -05:00
@-moz-keyframes bg-gradient {
0% { background-position: 0% 27% }
50% { background-position: 100% 74% }
100% { background-position: 0% 27% }
}
2024-05-31 09:20:16 -05:00
@-webkit-keyframes blink {
0% { opacity: 0; }
50% { opacity: 1.0; }
100% { opacity: 0; }
}
2024-08-11 13:44:26 -05:00
@-webkit-keyframes blink-navbar-text {
0% { opacity: 0; }
50% { opacity: .8; }
100% { opacity: 0; }
}
2024-05-31 09:20:16 -05:00
@-webkit-keyframes spin-y {
/* values: 128px, 256px, 348px, 396px*/
0% { transform: perspective(396px) rotateY(0); }
100% { transform: perspective(396px) rotateY(360deg); }
}
2024-05-31 09:20:16 -05:00
@-webkit-keyframes rainbow {
0% { filter: hue-rotate(0deg) contrast(150%) saturate(150%); }
100% { filter: hue-rotate(360deg) contrast(150%) saturate(150%); }
}
2024-05-31 09:20:16 -05:00
@-webkit-keyframes bg-gradient {
0% { background-position: 0% 27% }
50% { background-position: 100% 74% }
100% { background-position: 0% 27% }
}
2024-01-02 21:23:57 -06:00
2024-09-28 01:25:39 -05:00
/* disable certain animations if user has animations disabled on their system */
@media (prefers-reduced-motion) {
body {
background: var(--crust) !important;
2024-09-28 01:25:39 -05:00
animation: unset !important;
-moz-animation: unset !important;
-webkit-animation: unset !important;
}
.terminal {
.term-input {
.blink {
animation: unset !important;
-moz-animation: unset !important;
-webkit-animation: unset !important;
}
}
.terminal:hover {
.term-titlebar {
div {
#minimize-btn {
background: var(--yellow);
}
#maximize-btn {
background: var(--green);
}
#close-btn {
background: var(--red);
}
}
}
.term-input {
.blink {
display: unset;
}
}
border-color: var(--green);
}
}
2024-09-28 01:25:39 -05:00
#sneexy > section > #pfp {
animation: unset !important;
}
}
/* modify widths and spacing depending on the size of the display */
2024-04-19 17:16:50 -05:00
@media screen and (max-width: 59em) {
2024-08-11 13:44:26 -05:00
.navbar {
2024-08-11 23:58:04 -05:00
min-height: 1.8em !important;
max-height: 1.8em !important;
flex-wrap: wrap;
2024-08-11 13:44:26 -05:00
2024-08-11 23:58:04 -05:00
.nav-base {
padding: .27em .2em !important;
}
2024-08-11 13:44:26 -05:00
.nav-baselink {
display: none !important;
}
.mobile-dropdown {
position: relative !important;
display: inline-block !important;
}
.dropdown-content {
display: none;
position: absolute;
margin: .5em 0px 0px .4em !important;
background-color: var(--base);
min-width: 2em;
border-radius: 8px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 15px;
z-index: 1;
a {
display: inline-flex;
align-items: center;
color: var(--text);
padding: .6em .7em;
text-decoration: none;
}
a:hover {
color: var(--green);
text-decoration: underline;
}
i {
padding-right: .4em;
}
}
.show-dropdown {
display: block;
}
2024-08-11 13:44:26 -05:00
.nav-baselink-mobile {
display: block !important;
font-family: "Lexend Deca";
2024-08-11 13:44:26 -05:00
background-color: var(--green);
text-decoration: unset !important;
color: var(--crust);
margin-left: .4em !important;
border: unset !important;
2024-08-11 13:44:26 -05:00
i:not(:first-child) {
margin-left: -.5em;
margin-right: -.5em;
opacity: .6;
}
}
.nav-links {
display: none !important;
}
}
.terminal:nth-child(2) {
2024-08-11 23:58:04 -05:00
margin-top: 2.8em;
2024-01-02 21:23:57 -06:00
}
2024-04-19 17:16:50 -05:00
.terminal {
.term-titlebar {
margin: -16px 0px -24px;
}
2024-08-11 13:44:26 -05:00
margin: 0px .7em .7em;
2024-04-19 17:16:50 -05:00
padding: 10px 16px;
2024-01-02 21:23:57 -06:00
}
#sneexy > section {
2024-09-22 01:05:55 -05:00
.selfinfo {
grid-template-areas:
"pronouns"
"names";
div {
text-align: center;
margin-left: auto;
margin-right: auto;
ul {
text-align: left !important;
}
}
div:first-child {
margin-bottom: 1em;
}
div:last-child {
margin-left: auto !important;
}
}
}
.socials-contacts-list {
grid-template-columns: repeat(1, 1fr);
}
2024-05-31 09:20:16 -05:00
}