<?php
/*
Plugin Name: Quick n' Dirty Fixed Stylesheet
Plugin URI:
Description: Drop a stylesheet called "all.css" into your /wp-content/themes directory and it'll be loaded everytime. Scott Sauyet write a more feature packed plugin but it's an overkill for me. Use his if you want more features.
Author: Wai Kay
Version: 1.1
Author URI: http://waikay.net
*/

function yk_qndfs($blah)
{
  echo 
'<style type="text/css" media="screen">@import url( '.get_settings('siteurl').'/wp-content/themes/all.css );</style>';
  return 
$blah;
}

add_action('wp_head''yk_qndfs');

?>