@@ -11,6 +11,12 @@ This document demonstrates the centralized test fixture system that provides a s
1111** Input CSS:**
1212
1313``` css
14+ /*
15+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
16+ *
17+ * SPDX-License-Identifier: MIT
18+ */
19+
1420.responsive {
1521 width : if(media(width <= 768px ): 100% ; else : 50% );
1622}
@@ -19,6 +25,12 @@ This document demonstrates the centralized test fixture system that provides a s
1925** Expected Output:**
2026
2127``` css
28+ /*
29+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
30+ *
31+ * SPDX-License-Identifier: MIT
32+ */
33+
2234.responsive {
2335 width : 50% ;
2436}
@@ -40,6 +52,12 @@ This document demonstrates the centralized test fixture system that provides a s
4052** Input CSS:**
4153
4254``` css
55+ /*
56+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
57+ *
58+ * SPDX-License-Identifier: MIT
59+ */
60+
4361.grid {
4462 display : if(supports(display: grid ): grid ; else : block );
4563}
@@ -48,6 +66,12 @@ This document demonstrates the centralized test fixture system that provides a s
4866** Expected Output:**
4967
5068``` css
69+ /*
70+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
71+ *
72+ * SPDX-License-Identifier: MIT
73+ */
74+
5175.grid {
5276 display : block ;
5377}
@@ -69,6 +93,12 @@ This document demonstrates the centralized test fixture system that provides a s
6993** Input CSS:**
7094
7195``` css
96+ /*
97+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
98+ *
99+ * SPDX-License-Identifier: MIT
100+ */
101+
72102.test {
73103 color : if(style (--theme): var (--primary ) ; else : #00f );
74104}
@@ -77,6 +107,12 @@ This document demonstrates the centralized test fixture system that provides a s
77107** Expected Output:**
78108
79109``` css
110+ /*
111+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
112+ *
113+ * SPDX-License-Identifier: MIT
114+ */
115+
80116.test {
81117 color : #00f ;
82118}
@@ -93,6 +129,12 @@ This document demonstrates the centralized test fixture system that provides a s
93129** Input CSS:**
94130
95131``` css
132+ /*
133+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
134+ *
135+ * SPDX-License-Identifier: MIT
136+ */
137+
96138.example {
97139 color : if(media(width <= 768px ): #00f ; else : red );
98140 font-size : if(supports(display: grid ): 1.2rem ; else : 1rem );
@@ -102,6 +144,12 @@ This document demonstrates the centralized test fixture system that provides a s
102144** Expected Output:**
103145
104146``` css
147+ /*
148+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
149+ *
150+ * SPDX-License-Identifier: MIT
151+ */
152+
105153.example {
106154 color : red ;
107155}
@@ -131,6 +179,12 @@ This document demonstrates the centralized test fixture system that provides a s
131179** Input CSS:**
132180
133181``` css
182+ /*
183+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
184+ *
185+ * SPDX-License-Identifier: MIT
186+ */
187+
134188.responsive {
135189 padding : if(
136190 media(width >= 1200px ): 40px ; media (width >= 768px ): 30px ;
@@ -142,6 +196,12 @@ This document demonstrates the centralized test fixture system that provides a s
142196** Expected Output:**
143197
144198``` css
199+ /*
200+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
201+ *
202+ * SPDX-License-Identifier: MIT
203+ */
204+
145205.responsive {
146206 padding : 15px ;
147207}
@@ -173,6 +233,12 @@ This document demonstrates the centralized test fixture system that provides a s
173233** Input CSS:**
174234
175235``` css
236+ /*
237+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
238+ *
239+ * SPDX-License-Identifier: MIT
240+ */
241+
176242.test {
177243 color : if(media(width >= 768px ): #00f ; else : red );
178244 background : if(style (--dark-mode): black ; else : white );
@@ -182,6 +248,12 @@ This document demonstrates the centralized test fixture system that provides a s
182248** Expected Output:**
183249
184250``` css
251+ /*
252+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
253+ *
254+ * SPDX-License-Identifier: MIT
255+ */
256+
185257.test {
186258 color : red ;
187259}
@@ -206,6 +278,12 @@ This document demonstrates the centralized test fixture system that provides a s
206278** Input CSS:**
207279
208280``` css
281+ /*
282+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
283+ *
284+ * SPDX-License-Identifier: MIT
285+ */
286+
209287.responsive {
210288 width : if(media((width >= 768px ) and (width <= 1024px )): 50% ; else : 100% );
211289}
@@ -214,6 +292,12 @@ This document demonstrates the centralized test fixture system that provides a s
214292** Expected Output:**
215293
216294``` css
295+ /*
296+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
297+ *
298+ * SPDX-License-Identifier: MIT
299+ */
300+
217301.responsive {
218302 width : 100% ;
219303}
@@ -235,6 +319,12 @@ This document demonstrates the centralized test fixture system that provides a s
235319** Input CSS:**
236320
237321``` css
322+ /*
323+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
324+ *
325+ * SPDX-License-Identifier: MIT
326+ */
327+
238328/* Header styles */
239329.header {
240330 background : #00f ;
@@ -253,6 +343,12 @@ This document demonstrates the centralized test fixture system that provides a s
253343** Expected Output:**
254344
255345``` css
346+ /*
347+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
348+ *
349+ * SPDX-License-Identifier: MIT
350+ */
351+
256352/* Header styles */
257353.header {
258354 background : #00f ;
@@ -282,6 +378,12 @@ This document demonstrates the centralized test fixture system that provides a s
282378** Input CSS:**
283379
284380``` css
381+ /*
382+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
383+ *
384+ * SPDX-License-Identifier: MIT
385+ */
386+
285387.normal {
286388 color : red ;
287389 font-size : 1rem ;
@@ -291,6 +393,12 @@ This document demonstrates the centralized test fixture system that provides a s
291393** Expected Output:**
292394
293395``` css
396+ /*
397+ * SPDX-FileCopyrightText: 2025 Maximilian Franzke <mfr@nzke.net>
398+ *
399+ * SPDX-License-Identifier: MIT
400+ */
401+
294402.normal {
295403 color : red ;
296404 font-size : 1rem ;
0 commit comments