Advertisement
Guest User

Untitled

a guest
Oct 18th, 2014
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?php
  2.  
  3. PHP2CSS::addStyle('body, html', [
  4.     'background-color' => 'rgba(0,0,0,0.05)',
  5.     'font-family' => 'Open Sans'
  6. ]);
  7.  
  8. PHP2CSS::addStyle('.class', [
  9.     'font-size' => '300px'
  10. ]);
  11.  
  12.  
  13. echo '<style>';
  14. PHP2CSS::generateStylesheet();
  15. echo '</style>';
  16. ?>
  17. <DOCTYPE html>
  18. <html>
  19.     <head>
  20.     </head>
  21.     <body>
  22.         <div class="class">hi</div>
  23.     </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement