Last active
November 18, 2024 15:59
-
-
Save nathaningram/11145ef7fdffe0c35481ff1708bcbba8 to your computer and use it in GitHub Desktop.
Creating a Starter Site - Sample styles.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Theme Name: Kadence Client | |
| Author: YOUR BUSINESS NAME HERE | |
| Author URI: https://your-website.com | |
| Description: A child theme for Kadence from YOUR BUSINESS NAME | |
| Version: 1.0.0 | |
| License: GNU General Public License v2 or later | |
| License URI: http://www.gnu.org/licenses/gpl-2.0.html | |
| Text Domain: kadence-child | |
| Template: kadence | |
| */ | |
| /* Links and Buttons */ | |
| a, a:hover, | |
| input[type="submit"], | |
| input[type="submit"]:hover { | |
| transition: all .15s linear; | |
| } | |
| /* Typography */ | |
| .highlight { | |
| background: #ffd204; | |
| padding: 0px 6px 0px 6px; | |
| margin: 0px -5px 0px -5px; | |
| border-radius: 2px; | |
| } | |
| .pop { | |
| color: #ffd204; | |
| } | |
| .shadow1 { | |
| text-shadow: 1px 1px 3px rgba(0,0,0,0.75), | |
| 1px 1px 5px rgba(0,0,0,0.5); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment