File: varsimport.css

package info (click to toggle)
cssutils 2.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,312 kB
  • sloc: python: 23,625; javascript: 803; sh: 62; makefile: 8
file content (15 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@variables {
    c1: "c1 imported";
    c2: "c2 imported (SHOULD BE OVERWRITTEN)";
    }
    
.import1 {
    content: var(c1);
    }
.import2 {
    content: var(c2);
    }
.import3 {
    /* not defined here! */
    content: var(c3);
    }