27 lines
730 B
PHP
27 lines
730 B
PHP
<?php
|
|
// This file adds inline CSS for button fixes
|
|
// It should only output CSS, not modify files
|
|
?>
|
|
<style>
|
|
.btn {
|
|
background: #179e83 !important;
|
|
color: white !important;
|
|
padding: 15px 30px !important;
|
|
border: none !important;
|
|
border-radius: 5px !important;
|
|
text-decoration: none !important;
|
|
display: inline-block !important;
|
|
font-family: Arial, sans-serif !important;
|
|
font-size: 16px !important;
|
|
font-weight: bold !important;
|
|
text-align: center !important;
|
|
cursor: pointer !important;
|
|
margin: 10px 0 !important;
|
|
min-width: 150px !important;
|
|
box-sizing: border-box !important;
|
|
}
|
|
.btn:hover {
|
|
background: #11725e !important;
|
|
color: white !important;
|
|
}
|
|
</style>
|