103 lines
1.8 KiB
CSS
103 lines
1.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: #0f0f0f;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
color: #ffffff;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: #E63946;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: #f1faee;
|
|
}
|
|
|
|
.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;
|
|
}
|