/* Theme Name: Binary Log Pro Theme URI: https://blake-hofer.net/binary-theme Author: Dominique Blake-Hofer Author URI: https://blake-hofer.net Description: A minimalist, technical terminal-style theme. (c) 2026 Dominique Blake-Hofer. Licensed under the GPL v2 or later. Version: 1.0.0 Requires at least: 5.0 Tested up to: 6.4 Requires PHP: 7.4 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: grid-layout, custom-menu, featured-images, translation-ready, dark, custom-colors Text Domain: binary-log-pro */ :root { --primary-color: #7ca65c; --bg-color: #f4f7f2; } body { font-family: 'Inter', sans-serif; background: var(--bg-color); margin: 0; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* HEADER DESIGN */ .site-header { background:rgba(255,255,255,0.8); backdrop-filter:blur(10px); padding:20px 0; border-bottom:1px solid rgba(0,0,0,0.08); position:sticky; top:0; z-index:1000; } .header-flex { display: flex; justify-content: space-between; align-items: center; } /* MENU DESIGN (Terminal Style) */ .main-navigation ul { list-style: none; display: flex; gap: 25px; margin: 0; padding: 0; } .main-navigation a { text-decoration: none; color: #1a1a1a; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; font-family: monospace; } .main-navigation a:hover { color: var(--primary-color); } /* GRID & ENTRIES */ .main-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; margin: 60px 0; } .log-entry { background: white; padding: 40px; border-radius: 20px; border: 1px solid rgba(0,0,0,0.08); transition: all 0.3s ease; text-decoration: none; color: inherit; display: block; } .log-entry:hover { transform: translateY(-10px); border-color: var(--primary-color); box-shadow: 0 15px 30px rgba(0,0,0,0.05); } /* REQUIRED WP CLASSES */ .alignleft { float: left; margin: 0.5em 1em 0.5em 0; } .alignright { float: right; margin: 0.5em 0 0.5em 1em; } .aligncenter { display: block; margin-left: auto; margin-right: auto; } .wp-caption { background: #fff; border: 1px solid #f0f0f0; max-width: 96%; padding: 5px 3px 10px; text-align: center; } .wp-caption-text { font-size: 11px; line-height: 17px; margin: 0; padding: 0 4px 5px; } .sticky { background: #fdfdfd; border: 2px solid var(--primary-color); } .screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }