The entire CSS file loads in each blog post between the <head></head> tags. Isn't this code supposed to be pulled from a stylesheet.css file or as I am gathering for this theme - from the database? Why load the entire file each time? When looking at the source code, half of the entire code is CSS.
As far as I know this isn't good from an SEO perspective and I can guess it makes the page load slower, too.
Is there a solution to this? Can the CSS be placed in a file that will be referenced in the <head></head> tag like other sites do? (Like this for example: <link rel='stylesheet' href='/css/stylesheet.css' type='text/css'/>)