Files
ukaiautomation/add_inline_css.php

27 lines
730 B
PHP
Raw Permalink Normal View History

2025-06-08 11:21:30 +01:00
<?php
// This file adds inline CSS for button fixes
// It should only output CSS, not modify files
?>
2025-06-08 11:21:30 +01:00
<style>
.btn {
background: #6d28d9 !important;
2025-06-08 11:21:30 +01:00
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: #4338ca !important;
2025-06-08 11:21:30 +01:00
color: white !important;
}
</style>