-
Notifications
You must be signed in to change notification settings - Fork 273
Expand file tree
/
Copy pathast.json
More file actions
97 lines (97 loc) · 2 KB
/
ast.json
File metadata and controls
97 lines (97 loc) · 2 KB
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
90
91
92
93
94
95
96
97
{
"type": "stylesheet",
"stylesheet": {
"rules": [
{
"type": "import",
"import": "url(\"fineprint.css\") print",
"position": {
"start": {
"line": 1,
"column": 1
},
"end": {
"line": 1,
"column": 36
},
"source": "input.css"
}
},
{
"type": "import",
"import": "url(\"bluish.css\") projection, tv",
"position": {
"start": {
"line": 2,
"column": 1
},
"end": {
"line": 2,
"column": 42
},
"source": "input.css"
}
},
{
"type": "import",
"import": "'custom.css'",
"position": {
"start": {
"line": 3,
"column": 1
},
"end": {
"line": 3,
"column": 22
},
"source": "input.css"
}
},
{
"type": "import",
"import": "\"common.css\" screen, projection",
"position": {
"start": {
"line": 4,
"column": 1
},
"end": {
"line": 4,
"column": 41
},
"source": "input.css"
}
},
{
"type": "import",
"import": "url('landscape.css') screen and (orientation:landscape)",
"position": {
"start": {
"line": 5,
"column": 1
},
"end": {
"line": 5,
"column": 65
},
"source": "input.css"
}
},
{
"type": "import",
"import": "url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700')",
"position": {
"start": {
"line": 6,
"column": 1
},
"end": {
"line": 6,
"column": 88
},
"source": "input.css"
}
}
]
}
}