Skip to content

Instantly share code, notes, and snippets.

@diversen
Created June 29, 2017 08:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diversen/91385fea26868ace4edc957a9c167b57 to your computer and use it in GitHub Desktop.
Save diversen/91385fea26868ace4edc957a9c167b57 to your computer and use it in GitHub Desktop.
Quick modify of bootstrap buttons using php
<?php
header('Content-type: text/css');
function buttonColor($class = '.myBtn' , $c = '#ffffff', $bg = '#0099cc', $cHover = '#C0C0C0', $bgHover = '#C0C0C0') {
$str = <<<EOF
$class {
background: $bg;
color: $c;
}
$class:hover {
border-color: $bgHover;
background-color: $cHover;
}
EOF;
return $str;
}
echo buttonColor();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment