/* ############################################################ */ /* External Style Sheet Sample */ /* CSS for coloring a scrollbar */ /* INSTRUCTIONS: */ /* Use the ending ".css" for your external sheet */ /* such as "stylesheet.css" */ /* as shown below. */ /* 1. Use the CSS below for your external style sheet, */ /* changing the colors for your particular needs. */ /* 2. Save your stylesheet (with a ".css" ending). */ /* 3. Link FROM your HTML page TO your external style sheet: */ /* On your HTML page, add the link */ /* between your element tags */ /* */ /* ############################################################ */ /* IMPORTANT: */ /* Keep in mind that these CSS rules are NOT part of W3C Recommendations */ /* so W3C CSS Validators will give validation errors for this. */ /* Colored scrollbars will NOT appear in ALL browsers. */ /* See the tutorial about this CSS (URL below) for information */ /* END OF INSTRUCTIONS */ /* ############################################################ */ /* CSS rules for the browser scrollbar */ body { scrollbar-3dlight-color:#FFD700; scrollbar-arrow-color:#FFFF00; scrollbar-base-color:#FF6347; scrollbar-darkshadow-color:#FFA500; scrollbar-face-color:#008080; scrollbar-highlight-color:#FF69B4; scrollbar-shadow-color:#FF00FF; } /* CSS rules for the forms scrollbar */ textarea { scrollbar-3dlight-color:gold; scrollbar-arrow-color:yellow; scrollbar-base-color:tomato; scrollbar-darkshadow-color:orange; scrollbar-face-color:teal; scrollbar-highlight-color:hotpink; scrollbar-shadow-color:magenta; } /* ############################################################ */ /* CSS rules courtesy of WebsiteTips.com */ /* from tutorial: Coloring Your Scrollbars with CSS */ /* http://websitetips.com/articles/css/scrollbars/ */ /* written by Shirley Kaiser, SKDesigns http://skdesigns.com/ */ /* ############################################################ */