File: vars.css

package info (click to toggle)
cssutils 0.9.10~b1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,300 kB
  • sloc: python: 19,674; sh: 102; makefile: 83
file content (16 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@import "varsimport.css";

@variables {
    c2: "c2 own file (OVERWRITTEN)";
    c3: "c1 own file" 
    }

a1 {
    content: var(c1);
    }
a2 {
    content: var(c2);
    }
a3 {
    content: var(c3);
    }