// ==UserScript== // @name Dave Pinto - CSS Overrides // @namespace http://tampermonkey.net/ // @version 1.0 // @description Inject CSS overrides for Dave Pinto campaign site design work // @author Ted // @match https://davepinto-mn-house-2025.mystagingwebsite.com/* // @match https://davepinto.com/* // @grant GM_addStyle // @updateURL https://raw.githubusercontent.com/ted-thetrees/davepinto-css-overrides/main/tampermonkey.user.js // @downloadURL https://raw.githubusercontent.com/ted-thetrees/davepinto-css-overrides/main/tampermonkey.user.js // ==/UserScript== (function() { 'use strict'; GM_addStyle(` /* =========================================== PRIORITY CARDS - Equal Height + Top Alignment =========================================== */ /* Target the columns container in the priorities section */ .orange.chalk-bg_border_accent .wp-block-columns { align-items: stretch; } /* Make each column a flex container */ .orange.chalk-bg_border_accent .wp-block-columns > .wp-block-column { display: flex; flex-direction: column; } /* Make cover blocks fill the column height and align content to top */ .orange.chalk-bg_border_accent .wp-block-columns > .wp-block-column > .wp-block-cover { flex: 1; align-items: flex-start; } /* Push READ MORE button to bottom */ .orange.chalk-bg_border_accent .wp-block-cover__inner-container > .wp-block-group.is-vertical { height: 100%; justify-content: space-between; } `); })();