I have a classified ads script written in Perl that I'm using to power a listings site. The script is a few years old and uses a combination of variables (ie: $link_color = "#666633") and inline HTML to format the text in the dynamic pages that it produces. I really want to convert the formatting to CSS. My question is, will page load times degrade if I scrap the variables for formatting and attach an external style sheet, calling the styles from there instead of the script? Users already have to wait for the script to generate the pages. Will they have to wait longer for those pages to then call the style sheet?
Apologies if this post is better suited for the Perl forum.