Compare commits

...

3 Commits

Author SHA1 Message Date
neru c0fd9e370c feat: add prefix and suffix 2026-05-25 21:04:07 -03:00
neru fd0177f167 feat: remove luma invite, add projects 2026-05-25 21:04:02 -03:00
neru b97767dba8 feat: update style again 2026-05-25 21:01:13 -03:00
2 changed files with 139 additions and 136 deletions
+133 -130
View File
@@ -1,22 +1,22 @@
:root { :root {
--bg: #fff; --bg: #fff;
--bg-pattern: #ebdfdf; --bg-pattern: #f5eded;
--surface: #fff; --surface: #ffffff;
--border: #e2e8f0; --border: #fbcfe8;
--text-header: #444; --text-header: #475569;
--text-title: #666; --text-title: #64748b;
--text-title-shadow: #7d93bb; --text-title-shadow: #cbd5e1;
--text-main: #5a6b82; --text-main: #64748b;
--text-dim: #94a3b8; --text-dim: #94a3b8;
--accent: #d7e6ff; --accent: #d7e6ff;
--pink-accent: #ffd6f5; --pink-accent: #ffd6f5;
--sparkle: #ffffff; --sparkle: #ffffff;
--sparkle-glow: rgba(0, 100, 255, 0.555); --sparkle-glow: rgba(255, 182, 193, 0.8);
--border-width: 2px; --border-width: 2px;
} }
@@ -38,11 +38,8 @@ body {
overflow-x: hidden; overflow-x: hidden;
background-color: var(--bg); background-color: var(--bg);
background-image: background-image: radial-gradient(var(--bg-pattern) 2px, transparent 2px);
linear-gradient(45deg, var(--bg-pattern) 25%, transparent 25%, transparent 75%, var(--bg-pattern) 75%, var(--bg-pattern)), background-size: 16px 16px;
linear-gradient(45deg, var(--bg-pattern) 25%, #fff 25%, #fff 75%, var(--bg-pattern) 75%, var(--bg-pattern));
background-size: 40px 40px;
background-position: 0 0, 20px 20px;
} }
/* /*
@@ -54,7 +51,7 @@ body {
} }
50% { 50% {
transform: translateY(-10px); transform: translateY(-6px);
} }
100% { 100% {
@@ -64,20 +61,20 @@ body {
.main-frame { .main-frame {
background: var(--surface); background: var(--surface);
padding: 35px 25px 25px 25px;
padding: 40px;
position: relative; position: relative;
max-width: 420px; max-width: 400px;
width: 100%; width: 100%;
box-shadow: 4px 4px 0px var(--accent); border: 1px solid var(--pink-accent);
border: 2px solid #fff; outline: 4px solid #fff;
outline: 1px solid var(--pink-accent); box-shadow: 0 0 0 5px var(--accent), 8px 8px 0px rgba(215, 230, 255, 0.5);
animation: float 6s ease-in-out infinite; border-radius: 2px;
animation: float 5s ease-in-out infinite;
} }
.main-frame::before, .main-frame::before,
.main-frame::after { .main-frame::after {
content: "✧"; content: "✧";
@@ -93,74 +90,79 @@ body {
} }
.main-frame::after { .main-frame::after {
bottom: 10px; top: 10px;
right: 10px; right: 10px;
} }
.content-box { .content-box {
border: 1px ridge var(--pink-accent); border: 1px double var(--accent);
background: #fffafa; background: #fffdfd;
margin-top: 20px; margin-top: 20px;
padding: 18px; padding: 15px;
position: relative;
box-shadow: inset 0 0 10px rgba(255, 214, 245, 0.2);
}
.content-box::before {
content: "•";
position: absolute;
top: -4px;
left: 6px;
background: #fff;
padding: 0 4px;
font-size: 0.6rem;
color: var(--text-dim);
} }
/* /*
text stuffs text stuffs
*/ */
h1 { h1 {
font-size: 1.5rem; font-size: 1.8rem;
letter-spacing: -1px; letter-spacing: 1px;
color: var(--text-header); color: var(--text-header);
text-transform: lowercase; text-transform: lowercase;
font-style: italic; font-style: italic;
font-weight: normal; font-weight: normal;
margin-bottom: 5px; margin-top: 10px;
filter: drop-shadow(0 0 15px var(--text-title-shadow)); margin-bottom: 2px;
text-shadow: 2px 2px 0px var(--pink-accent);
} }
.motto { .motto {
font-size: 0.8rem; font-size: 0.75rem;
letter-spacing: 2px; letter-spacing: 1px;
margin-bottom: 20px; margin-bottom: 15px;
color: var(--text-dim); color: var(--text-dim);
} }
.social-links { .social-links {
margin: 25px 0; margin: 20px 0;
font-size: 0.8rem; font-size: 0.8rem;
color: var(--pink-accent);
} }
.social-links a { .social-links a {
color: var(--text-main); color: var(--text-main);
text-decoration: none; text-decoration: none;
margin: 0 10px; margin: 0 6px;
padding: 2px 8px; padding: 2px 6px;
transition: 0.5s; border-bottom: 1px dashed transparent;
transition: all 0.3s ease;
}
.social-links a:hover {
color: var(--text-header);
border-bottom: 1px dashed var(--pink-accent);
} }
.title { .title {
font-size: 1.1rem; font-size: 0.95rem;
margin-bottom: 10px; font-style: italic;
font-weight: normal;
margin-bottom: 8px;
color: var(--text-title); color: var(--text-title);
} letter-spacing: 0.5px;
.invite-btn {
display: inline-block;
margin-top: 15px;
text-decoration: none;
color: var(--text-dim);
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 2px;
transition: 0.3s;
}
.invite-btn:hover {
color: var(--accent);
text-shadow: 0 0 15px var(--sparkle);
letter-spacing: 2.5px;
} }
.directory { .directory {
@@ -168,46 +170,62 @@ h1 {
padding: 0; padding: 0;
display: flex; display: flex;
justify-content: center; justify-content: center;
gap: 12px; gap: 8px;
margin: 5px 0;
} }
.directory a { .directory a {
padding: 4px 12px; text-decoration: none;
font-size: 0.8rem; background: #fff;
padding: 3px 8px;
font-size: 0.73rem;
color: var(--text-main); color: var(--text-main);
transition: 0.5s; border: 1px solid #fff;
padding: 3px 10px;
border: 1px solid var(--accent);
box-shadow: 2px 2px 0px var(--pink-accent);
transition: 0.2s ease;
}
.directory a::before {
content: " "
}
.directory a::after {
content:" "
} }
/* text hover anim */
.social-links a:hover,
.directory a:hover { .directory a:hover {
color: #fff;
background: var(--pink-accent);
box-shadow: 0 0 15px var(--pink-accent);
border-radius: 4px;
cursor: url('https://cdn.cursors-4u.net/previews/my-custom-cursor-8-1-e2eeed6e-preview-32.webp') 0 0, auto !important; cursor: url('https://cdn.cursors-4u.net/previews/my-custom-cursor-8-1-e2eeed6e-preview-32.webp') 0 0, auto !important;
color: var(--text-header);
box-shadow: 1px 1px 0px var(--pink-accent);
background: var(--pink-accent);
} }
.marquee { .marquee {
width: 100%; width: 100%;
overflow: hidden; overflow: hidden;
white-space: nowrap; white-space: nowrap;
padding: 10px 0; padding: 6px 0;
margin-top: 30px; margin-top: 25px;
font-size: 0.75rem; font-size: 0.7rem;
letter-spacing: 2.5px; color: var(--text-main);
color: var(--text-dim); opacity: 0.8;
border-top: 1px ridge var(--pink-accent); border-top: 1px double var(--pink-accent);
border-bottom: 1px ridge var(--pink-accent); border-bottom: 1px double var(--pink-accent);
background: rgba(255, 255, 255, 0.5); background: linear-gradient(to right, transparent, rgba(255, 214, 245, 0.3), transparent);
} }
.marquee span { .marquee span {
display: inline-block; display: inline-block;
padding-left: 100%; padding-left: 100%;
animation: marquee 15s linear infinite; animation: marquee 25s linear infinite;
} }
@keyframes marquee { @keyframes marquee {
@@ -224,68 +242,53 @@ h1 {
modal modal
*/ */
.modal-overlay { .modal-overlay {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
width: 100%; width: 100%;
height: 100%; height: 100%;
background: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.4);
backdrop-filter: blur(2px); backdrop-filter: blur(3px);
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
z-index: 1000; z-index: 1000;
animation: fadeIn 0.3s ease;
} }
.modal-content { .modal-content {
background: var(--surface); background: var(--surface);
padding: 25px; padding: 20px;
border: 1px ridge var(--pink-accent); border: 1px solid var(--pink-accent);
outline: 1px solid var(--accent); box-shadow: 4px 4px 0px var(--accent);
box-shadow: 8px 8px 0px var(--pink-accent); text-align: center;
text-align: center; min-width: 250px;
min-width: 250px;
} }
.modal-header { .modal-header {
color: var(--text-title); color: var(--text-title);
font-size: 1.1rem; font-size: 1rem;
margin-bottom: 15px; font-style: italic;
border-bottom: 1px double var(--accent); margin-bottom: 12px;
padding-bottom: 5px; border-bottom: 1px dashed var(--accent);
padding-bottom: 5px;
} }
.modal-body p { .modal-body p {
font-size: 0.9rem; font-size: 0.85rem;
margin: 8px 0; margin: 6px 0;
color: var(--text-main); color: var(--text-main);
} }
.modal-close-btn { .modal-close-btn {
background: none; background: none;
border: none; border: none;
margin-top: 15px; margin-top: 12px;
font-family: inherit; font-family: inherit;
font-size: 0.7rem; font-size: 0.7rem;
color: var(--text-dim); color: var(--text-dim);
text-transform: uppercase; text-transform: lowercase;
letter-spacing: 1px; font-style: italic;
cursor: pointer; cursor: pointer;
transition: 0.3s; text-decoration: underline;
} text-underline-offset: 2px;
}
.modal-close-btn:hover {
color: var(--text-title-shadow);
letter-spacing: 2px;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes popIn {
from { transform: scale(0.8); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
+6 -6
View File
@@ -29,11 +29,12 @@ function Content() {
</nav> </nav>
<section className="content-box"> <section className="content-box">
<h2 className="title"> luma </h2> <h2 className="title"> projects im currently working on </h2>
<p style={{ fontSize: '0.9rem' }}>a rly barebones TTS discord bot that sometimes works</p> <ul className="directory">
<a href="https://discord.com/api/oauth2/authorize?client_id=1459513087278186567&scope=applications.commands+bot&permissions=70643692457024" className="invite-btn"> <li><a href="https://git.neru.rip/neru/seallib">seallib</a></li>
[ add to server ] <li><a href="https://git.neru.rip/neru/tinymitm">tinymitm</a></li>
</a> <li><a href="https://git.neru.rip/neru/luma">luma</a></li>
</ul>
</section> </section>
<section className="content-box"> <section className="content-box">
@@ -53,7 +54,6 @@ function Content() {
</ul> </ul>
</section> </section>
<footer> <footer>
<div className="marquee"> <div className="marquee">
<span> ˵ ˵ ^^ 𝗓 𐰁 /. .\ /. ̫ .\ ^^ ˄·͈·͈˄ /. .\ 𓏲ּ ֶָ / .. \ </span> <span> ˵ ˵ ^^ 𝗓 𐰁 /. .\ /. ̫ .\ ^^ ˄·͈·͈˄ /. .\ 𓏲ּ ֶָ / .. \ </span>