✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
48 lines
943 B
JavaScript
48 lines
943 B
JavaScript
import { Ident } from '../../tokenizer/index.js';
|
|
|
|
export const name = 'Nth';
|
|
export const structure = {
|
|
nth: ['AnPlusB', 'Identifier'],
|
|
selector: ['SelectorList', null]
|
|
};
|
|
|
|
export function parse() {
|
|
this.skipSC();
|
|
|
|
const start = this.tokenStart;
|
|
let end = start;
|
|
let selector = null;
|
|
let nth;
|
|
|
|
if (this.lookupValue(0, 'odd') || this.lookupValue(0, 'even')) {
|
|
nth = this.Identifier();
|
|
} else {
|
|
nth = this.AnPlusB();
|
|
}
|
|
|
|
end = this.tokenStart;
|
|
this.skipSC();
|
|
|
|
if (this.lookupValue(0, 'of')) {
|
|
this.next();
|
|
|
|
selector = this.SelectorList();
|
|
end = this.tokenStart;
|
|
}
|
|
|
|
return {
|
|
type: 'Nth',
|
|
loc: this.getLocation(start, end),
|
|
nth,
|
|
selector
|
|
};
|
|
}
|
|
|
|
export function generate(node) {
|
|
this.node(node.nth);
|
|
if (node.selector !== null) {
|
|
this.token(Ident, 'of');
|
|
this.node(node.selector);
|
|
}
|
|
}
|