start base.css
This commit is contained in:
parent
19f8b1b2d3
commit
a11c3f0b16
6 changed files with 41 additions and 4 deletions
|
@ -4,7 +4,7 @@ const postcssImportExtGlob = require('postcss-import-ext-glob')
|
|||
const postcssImport = require('postcss-import')
|
||||
const postcssPresetEnv = require('postcss-preset-env')
|
||||
const cssnano = require('cssnano')
|
||||
const esbuild = require('esbuild')
|
||||
// const esbuild = require('esbuild')
|
||||
const automaticNoopener = require('eleventy-plugin-automatic-noopener')
|
||||
|
||||
module.exports = function (eleventyConfig) {
|
||||
|
@ -44,7 +44,7 @@ module.exports = function (eleventyConfig) {
|
|||
noreferrer: true,
|
||||
})
|
||||
|
||||
// eleventyConfig.addPassthroughCopy('./src/dl/')
|
||||
eleventyConfig.addPassthroughCopy('./src/img/')
|
||||
|
||||
return {dir: {input: 'src', output: 'dist'}}
|
||||
}
|
15
.idea/git_toolbox_prj.xml
Normal file
15
.idea/git_toolbox_prj.xml
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="GitToolBoxProjectSettings">
|
||||
<option name="commitMessageIssueKeyValidationOverride">
|
||||
<BoolValueOverride>
|
||||
<option name="enabled" value="true" />
|
||||
</BoolValueOverride>
|
||||
</option>
|
||||
<option name="commitMessageValidationEnabledOverride">
|
||||
<BoolValueOverride>
|
||||
<option name="enabled" value="true" />
|
||||
</BoolValueOverride>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
14
.idea/webResources.xml
Normal file
14
.idea/webResources.xml
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="WebResourcesPaths">
|
||||
<contentEntries>
|
||||
<entry url="file://$PROJECT_DIR$">
|
||||
<entryData>
|
||||
<resourceRoots>
|
||||
<path value="file://$PROJECT_DIR$/src" />
|
||||
</resourceRoots>
|
||||
</entryData>
|
||||
</entry>
|
||||
</contentEntries>
|
||||
</component>
|
||||
</project>
|
BIN
src/img/theme/baby-its-cold-outside/bg.png
Normal file
BIN
src/img/theme/baby-its-cold-outside/bg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 181 KiB |
|
@ -1,3 +1,9 @@
|
|||
@layer base {
|
||||
|
||||
body {
|
||||
font-family: var(--t-face);
|
||||
color: var(--c-text);
|
||||
letter-spacing: var(--t-spacing);
|
||||
font-size: var(--t-step-0);
|
||||
background: var(--bg);
|
||||
}
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* imports
|
||||
* imports & misc
|
||||
* colors
|
||||
* typography
|
||||
* type sizing
|
||||
|
@ -10,6 +10,8 @@
|
|||
@import url('https://fonts.bunny.net/css2?family=Sacramento&display=swap');
|
||||
|
||||
:root {
|
||||
--bg: url('/img/theme/baby-its-cold-outside/bg.png');
|
||||
|
||||
/* ---------------------------------------------------------------------- *\
|
||||
&colors
|
||||
\* ---------------------------------------------------------------------- */
|
||||
|
|
Loading…
Reference in a new issue