2026-01-22 15:29:33 +00:00

183 lines
3.8 KiB
CSS

/*
Theme Name: GamePulse Child
Theme URI: https://flatlogic.com/
Description: Child theme for the GamePulse blog.
Author: Gemini
Template: twentytwentyfive
Version: 1.0.0
*/
body {
background-color: #0b0b0b;
background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0b0b0b 100%);
background-attachment: fixed;
color: #e0e0e0;
}
h1, h2, h3, h4, h5, h6 {
color: #ffffff;
font-family: 'Inter', sans-serif;
letter-spacing: -0.02em;
}
a {
color: #E63946;
text-decoration: none;
transition: all 0.3s ease;
}
a:hover {
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 {
border-left: 4px solid #E63946;
padding-left: 15px;
}
/* TablePress Customization */
.tablepress {
background-color: #1a1a1a;
border: 1px solid #333;
border-collapse: collapse;
width: 100%;
margin: 20px 0;
}
.tablepress thead th {
background-color: #E63946;
color: #ffffff;
font-weight: bold;
text-transform: uppercase;
padding: 12px;
border-bottom: 2px solid #333;
}
.tablepress tbody td {
padding: 12px;
border-bottom: 1px solid #333;
color: #e0e0e0;
}
.tablepress .odd td {
background-color: #1a1a1a;
}
.tablepress .even td {
background-color: #242424;
}
.tablepress tbody tr:hover td {
background-color: #333;
color: #ffffff;
}
/* Review Score Badge */
.gamepulse-score-badge {
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #E63946;
color: #ffffff;
font-weight: 900;
font-size: 1.2rem;
width: 50px;
height: 50px;
border-radius: 50%;
border: 3px solid #ffffff;
box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
margin: 10px 0;
position: relative;
z-index: 10;
}
.wp-block-post-template .gamepulse-score-badge {
position: absolute;
top: 10px;
right: 10px;
font-size: 1rem;
width: 40px;
height: 40px;
border-width: 2px;
}
.wp-block-post-template {
position: relative;
}