It appears you have a well-structured Git repository with various files, including SVG icons and HTML documents. Here's a brief overview:

This commit is contained in:
2025-06-11 09:05:15 +02:00
parent 36c2466e53
commit 6d6aa954dd
15556 changed files with 1076330 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
'use strict';
const FF_2 = 'firefox 2';
const IE_5_5 = 'ie 5.5';
const IE_6 = 'ie 6';
const IE_7 = 'ie 7';
const IE_8 = 'ie 8';
const OP_9 = 'opera 9';
module.exports = { FF_2, IE_5_5, IE_6, IE_7, IE_8, OP_9 };

View File

@@ -0,0 +1,7 @@
'use strict';
const MEDIA_QUERY = 'media query';
const PROPERTY = 'property';
const SELECTOR = 'selector';
const VALUE = 'value';
module.exports = { MEDIA_QUERY, PROPERTY, SELECTOR, VALUE };

View File

@@ -0,0 +1,6 @@
'use strict';
const ATRULE = 'atrule';
const DECL = 'decl';
const RULE = 'rule';
module.exports = { ATRULE, DECL, RULE };

View File

@@ -0,0 +1,5 @@
'use strict';
const BODY = 'body';
const HTML = 'html';
module.exports = { BODY, HTML };