File: css.inc

package info (click to toggle)
psp 0.5.5-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 4,820 kB
  • ctags: 2,333
  • sloc: perl: 21,074; ansic: 4,553; sh: 2,407; makefile: 461; php: 11; pascal: 6
file content (10 lines) | stat: -rw-r--r-- 280 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
<style><%
{
  my $style_to_use = %style ? \%style : \%default_style;
  for my $style_key (sort keys(%$style_to_use)) { %>
  [+ $style_key +] {
<%     while (my ($att,$val) = each(%{$style_to_use->{$style_key}})) { %>
  [+ $att +]: [+ $val +]; <% } %> }
<%   } %>
<% } %>
</style>