(Prism.languages.less = Prism.languages.extend('css', {
comment: [/\/\*[\s\S]*?\*\//, { pattern: /(^|[^\\])\/\/.*/, lookbehind: !0 }],
atrule: {
pattern:
/@[\w-](?:\((?:[^(){}]|\([^(){}]*\))*\)|[^(){};\s]|\s+(?!\s))*?(?=\s*\{)/,
inside: { punctuation: /[:()]/ },
},
selector: {
pattern:
/(?:@\{[\w-]+\}|[^{};\s@])(?:@\{[\w-]+\}|\((?:[^(){}]|\([^(){}]*\))*\)|[^(){};@\s]|\s+(?!\s))*?(?=\s*\{)/,
inside: { variable: /@+[\w-]+/ },
},
property: /(?:@\{[\w-]+\}|[\w-])+(?:\+_?)?(?=\s*:)/,
operator: /[+\-*\/]/,
})),
Prism.languages.insertBefore('less', 'property', {
variable: [
{ pattern: /@[\w-]+\s*:/, inside: { punctuation: /:/ } },
/@@?[\w-]+/,
],
'mixin-usage': {
pattern: /([{;]\s*)[.#](?!\d)[\w-].*?(?=[(;])/,
lookbehind: !0,
alias: 'function',
},
});
: www.armandphilippot.com
|
| The frontend of my personal website. | Armand Philippot |
blob: 5682aa302920b38fd5227e00c3180e7d99df362c (
plain)
1
2
3
4
5
6
7
8
|
@use "@styles/abstracts/functions" as fun;
.sun {
fill: var(--color-primary-lighter);
stroke: var(--color-primary-darker);
stroke-width: 4;
width: var(--icon-size, #{fun.convert-px(25)});
}
|