Auto commit: 2026-01-22T15:29:33.753Z

This commit is contained in:
Flatlogic Bot 2026-01-22 15:29:33 +00:00
parent 2884508100
commit cab0abc008
4 changed files with 82 additions and 2 deletions

BIN
assets/images/about-bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 676 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -8,22 +8,102 @@ Version: 1.0.0
*/ */
body { body {
background-color: #0f0f0f; background-color: #0b0b0b;
background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0b0b0b 100%);
background-attachment: fixed;
color: #e0e0e0; color: #e0e0e0;
} }
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
color: #ffffff; color: #ffffff;
font-family: 'Inter', sans-serif; font-family: 'Inter', sans-serif;
letter-spacing: -0.02em;
} }
a { a {
color: #E63946; color: #E63946;
text-decoration: none; text-decoration: none;
transition: all 0.3s ease;
} }
a:hover { a:hover {
color: #f1faee; color: #ffffff;
text-shadow: 0 0 8px rgba(230, 57, 70, 0.6);
}
/* Site Title / Logo */
.wp-block-site-title a {
color: #ffffff !important;
font-weight: 900;
text-transform: uppercase;
letter-spacing: -1px;
font-size: 1.5rem;
background: linear-gradient(90deg, #ffffff 0%, #E63946 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: all 0.4s ease;
}
.wp-block-site-title a:hover {
letter-spacing: 0px;
filter: brightness(1.2);
}
/* Header & Navigation */
header.wp-block-template-part {
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
background: rgba(11, 11, 11, 0.8);
backdrop-filter: blur(10px);
position: sticky;
top: 0;
z-index: 1000;
}
.wp-block-navigation .wp-block-navigation-item a {
text-transform: uppercase;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 1px;
padding: 10px 15px !important;
}
.wp-block-navigation .wp-block-navigation-item a:hover {
background: rgba(230, 57, 70, 0.1);
border-radius: 4px;
}
/* Buttons */
.wp-block-button__link {
background-color: #E63946 !important;
color: #ffffff !important;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
border-radius: 4px !important;
padding: 15px 30px !important;
transition: transform 0.2s ease, box-shadow 0.2s ease !important;
border: none !important;
}
.wp-block-button__link:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
background-color: #ff4d5a !important;
}
/* Footer */
footer.wp-block-template-part {
background: #050505;
padding: 60px 0 !important;
border-top: 1px solid rgba(255, 255, 255, 0.05);
margin-top: 80px;
}
footer .wp-block-heading {
border-left: none;
padding-left: 0;
font-size: 1.2rem;
color: #E63946;
} }
.wp-block-heading { .wp-block-heading {