Custom admin CSS
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
function my_admin_theme_style() {
wp_enqueue_style( 'my-admin-style', get_stylesheet_directory_uri() . '/css/admin/style.css');
}
add_action( 'admin_enqueue_scripts', 'my_admin_theme_style' );