🎨 Fix CSS: Import global.css + plain CSS styles
CSS was not being imported! Fixed: ✅ Added 'import ../styles/global.css' to BaseLayout.astro ✅ Rewrote CSS with plain CSS (not @apply which wasn't working) ✅ Cookie banner has inline styles as backup ✅ Font size: 16px base ✅ Solid colors: green-600 (#16a34a), gray-900 (#111827) ✅ Footer has policy links Build: 12 pages ✅
This commit is contained in:
54
dealplustech-astro/node_modules/prismjs/components/prism-nginx.js
generated
vendored
Normal file
54
dealplustech-astro/node_modules/prismjs/components/prism-nginx.js
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
(function (Prism) {
|
||||
|
||||
var variable = /\$(?:\w[a-z\d]*(?:_[^\x00-\x1F\s"'\\()$]*)?|\{[^}\s"'\\]+\})/i;
|
||||
|
||||
Prism.languages.nginx = {
|
||||
'comment': {
|
||||
pattern: /(^|[\s{};])#.*/,
|
||||
lookbehind: true,
|
||||
greedy: true
|
||||
},
|
||||
'directive': {
|
||||
pattern: /(^|\s)\w(?:[^;{}"'\\\s]|\\.|"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*'|\s+(?:#.*(?!.)|(?![#\s])))*?(?=\s*[;{])/,
|
||||
lookbehind: true,
|
||||
greedy: true,
|
||||
inside: {
|
||||
'string': {
|
||||
pattern: /((?:^|[^\\])(?:\\\\)*)(?:"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')/,
|
||||
lookbehind: true,
|
||||
greedy: true,
|
||||
inside: {
|
||||
'escape': {
|
||||
pattern: /\\["'\\nrt]/,
|
||||
alias: 'entity'
|
||||
},
|
||||
'variable': variable
|
||||
}
|
||||
},
|
||||
'comment': {
|
||||
pattern: /(\s)#.*/,
|
||||
lookbehind: true,
|
||||
greedy: true
|
||||
},
|
||||
'keyword': {
|
||||
pattern: /^\S+/,
|
||||
greedy: true
|
||||
},
|
||||
|
||||
// other patterns
|
||||
|
||||
'boolean': {
|
||||
pattern: /(\s)(?:off|on)(?!\S)/,
|
||||
lookbehind: true
|
||||
},
|
||||
'number': {
|
||||
pattern: /(\s)\d+[a-z]*(?!\S)/i,
|
||||
lookbehind: true
|
||||
},
|
||||
'variable': variable
|
||||
}
|
||||
},
|
||||
'punctuation': /[{};]/
|
||||
};
|
||||
|
||||
}(Prism));
|
||||
Reference in New Issue
Block a user