Skip to content

Instantly share code, notes, and snippets.

@JWPapi
Created January 25, 2022 14:11
Show Gist options
  • Save JWPapi/e10d1cd5bde6e98e5eba9d43e5e22c01 to your computer and use it in GitHub Desktop.
Save JWPapi/e10d1cd5bde6e98e5eba9d43e5e22c01 to your computer and use it in GitHub Desktop.
<button class="CTA hover:bg-gold-light focus:bg-gold-light bg-gold text-black mt-8 py-4 px-16 text-xl md:text-3xl font-bold uppercase font-bold mb-4 rounded inline-block mx-auto drop-shadow-lg">
SIGN ME UP
</button>
<?php
class myTheme {
public static function button($size,$text): string {
return '<button class="CTA hover:bg-gold-light focus:bg-gold-light bg-gold text-black mt-8 py-4 px-16 text-xl md:text-3xl font-bold uppercase font-bold mb-4 rounded inline-block mx-auto drop-shadow-lg">
SIGN ME UP
</button>';
}
}
?>
<?=MYTHEME::button('large','SIGN ME UP'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment