11 lines
185 B
PHP
11 lines
185 B
PHP
<?php
|
|
|
|
function default_styles()
|
|
{
|
|
return file_get_contents(__DIR__ . '/css/default.css');
|
|
}
|
|
|
|
function common_styles()
|
|
{
|
|
return file_get_contents(__DIR__ . '/css/common.css');
|
|
} |