Work on layout
This commit is contained in:
parent
1abd43a2ac
commit
dad7290ae4
3 changed files with 37 additions and 34 deletions
|
@ -19,7 +19,7 @@ module.exports = function (eleventyConfig) {
|
|||
})
|
||||
})
|
||||
|
||||
eleventyConfig.addWatchTarget('./src/style/**/*.css')
|
||||
eleventyConfig.addWatchTarget('./src/style/')
|
||||
|
||||
eleventyConfig.addPlugin(require('eleventy-plugin-automatic-noopener'), {
|
||||
noreferrer: true,
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
@layer layout {
|
||||
.Site {
|
||||
|
||||
background-color: var(--c-neutral);
|
||||
height: 90vh;
|
||||
width: 90vw;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,8 +9,9 @@
|
|||
\* -------------------------------------------------------------------------- */
|
||||
|
||||
:root {
|
||||
--c-pink: rgba(244, 114, 182, 1);
|
||||
--c-purple: rgba(192, 132, 252, 1);
|
||||
--c-pink: hsl(329, 86%, 70%);
|
||||
--c-purple: hsl(270, 95%, 75%);
|
||||
--c-neutral: hsl(220, 16%, 96%);
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------------- *\
|
||||
|
|
Loading…
Reference in a new issue