If you add a CSS file to a Theme folder, then the CSS is applied to every page to which the Theme is applied.
File: \yourApplicationRoot\App_Themes\StyleTheme\SimpleStyle.css
.content
{
margin:auto;
width:600px;
border:solid 1px black;
background-color:White;
padding:10px;
}
.button
{
background-color:#eeeeee;
}
File: ShowSimpleCSS.aspx
<%@ Page Language="C#" Theme="StyleTheme" %>
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
Show Simple CSS