<cfparam name="URL.theme" type="numeric" default="1" />
<cfcontent type="text/css" />
<cfswitch expression="#URL.theme#">
<cfcase value="1">
</cfcase>
<cfcase value="2">
body {
font-family: arial ;
}
strong {
background-color: gold ;
}
em {
color: #FF0000 ;
}
ul {
list-style-type: circle ;
}
ol {
list-style-type: upper-roman ;
}
</cfcase>
<cfcase value="3">
body {
background-color: #000033 ;
color: #FFFFFF ;
font-family: monospace ;
font-size: 100% ;
}
strong {
background-color: #FFFFFF ;
color: #333333 ;
}
em {
border-bottom: 1px dotted #FFFFFF ;
}
a {
color: gold ;
}
</cfcase>
</cfswitch>