feat: converted css files to scss files
This commit is contained in:
parent
9b71b9fbad
commit
7392694b4f
|
@ -5,6 +5,8 @@ module.exports = function (eleventyConfig) {
|
|||
|
||||
eleventyConfig.addPlugin(pluginNavigation);
|
||||
|
||||
eleventyConfig.addWatchTarget("./src/scss/");
|
||||
|
||||
eleventyConfig.addPassthroughCopy({
|
||||
"node_modules/chaffle/docs/chaffle.min.js": "javascript/chaffle.min.js",
|
||||
"assets/": "./",
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"license": "MIT",
|
||||
"scripts": {
|
||||
"watch:sass": "sass --no-source-map --watch src/scss:_site/css",
|
||||
"watch:eleventy": "ELEVENTY_ENV=dev eleventy --serve",
|
||||
"watch:eleventy": "eleventy --serve",
|
||||
"build:sass": "sass --no-source-map src/scss:_site/css",
|
||||
"build:eleventy": "ELEVENTY_ENV=prod eleventy",
|
||||
"start": "npm-run-all build:sass --parallel watch:*",
|
||||
|
|
|
@ -97,6 +97,7 @@ h2 {
|
|||
size: auto;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body,
|
||||
html {
|
||||
background-color: white !important;
|
||||
|
@ -105,20 +106,25 @@ h2 {
|
|||
color-adjust: exact !important;
|
||||
-webkit-print-color-adjust: exact !important;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 2em;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
li.event {
|
||||
border-left: 2px black solid;
|
||||
}
|
||||
|
||||
.tag {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
header,
|
||||
footer,
|
||||
.btn-back,
|
Reference in a new issue