File: AllStyles.css

package info (click to toggle)
codequery 1.0.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,860 kB
  • sloc: cpp: 151,420; xml: 16,576; python: 5,602; ansic: 5,487; makefile: 559; perl: 496; ruby: 209; sql: 194; sh: 106; php: 53; vhdl: 51; erlang: 47; objc: 22; lisp: 18; cobol: 18; modula3: 17; asm: 14; fortran: 12; ml: 11; tcl: 6
file content (89 lines) | stat: -rw-r--r-- 1,060 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* Enumerate all styles: 0 to 23 */

/* comment=9 */

/* whitespace=0 */
	/* */

/* tag=1 */
html/**/
{}

/* class=2 */
.hidden
{}

/* pseudoclass=3 */
:link
{}

/* unknown pseudoclass=4 */
:unknown
{}

/* operator=5 */
#
{}

/* identifier=6 */
*{margin:}

/* unknown identifier=7 */
*{unknown:}

/* value=8 */
*{:88}

/* identifier=10 */
#identifier
{}

/* important=11 */
* { margin: 0 ! important; }

/* directive=12 */
@directive
{ }

/* doublestring=13 */
* { font-family: "doublestring"; }

/* singlestring=14 */
* { font-family: 'singlestring'; }

/* identifier2=15 */
* { identifier2: 0}

/* attribute=16 */
[attribute]
{}

/* identifier3=17 */
* { identifier3: 0}

/* pseudoelement=18 */
::pseudoelement
{}

/* extended_identifier=19 */
* { extended_identifier: 0}

/* extended_pseudoclass=20 */
:extended_pseudoclass
{}

/* extended_pseudoelement=21 */
::extended_pseudo_element
{}

/* media=22 */
@media (orientation: portrait)
{ }

/* group rule=22 */
@supports ( display: flex ) {
  body { display: flex; }
}

/* variable=23 */
$variable:#428bca;