Skip to content

Commit

Permalink
Merge pull request #3 from nek0meshi/css
Browse files Browse the repository at this point in the history
CSS開発の準備
  • Loading branch information
nek0meshi committed Jan 17, 2022
2 parents 2c44f39 + 52c5e85 commit 8027e80
Show file tree
Hide file tree
Showing 7 changed files with 928 additions and 56 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Portfolio
# Profile
7 changes: 7 additions & 0 deletions v2/assets/scss/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Mono&family=Zen+Kaku+Gothic+Antique&display=swap');

* {
font-family: 'Red Hat Mono', 'Zen Kaku Gothic Antique', monospace, sans-serif;
text-align: center;
font-size: 16px;
}
Empty file added v2/assets/scss/variables.scss
Empty file.
11 changes: 10 additions & 1 deletion v2/nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export default {

// Global CSS: https://go.nuxtjs.dev/config-css
css: [
'~/assets/scss/main.scss',
],

// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
Expand All @@ -36,6 +37,8 @@ export default {
'@nuxtjs/eslint-module',
// https://go.nuxtjs.dev/stylelint
'@nuxtjs/stylelint-module',
'@nuxtjs/tailwindcss',
'@nuxtjs/style-resources',
],

// Modules: https://go.nuxtjs.dev/config-modules
Expand All @@ -44,5 +47,11 @@ export default {

// Build Configuration: https://go.nuxtjs.dev/config-build
build: {
}
},

styleResources: {
scss: [
'~/assets/scss/variables.scss',
],
},
}
10 changes: 9 additions & 1 deletion v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,22 @@
"@babel/eslint-parser": "^7.14.7",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/style-resources": "^1.2.1",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^4.2.1",
"autoprefixer": "^10.4.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.12.1",
"fibers": "^5.0.0",
"postcss": "^8.3.11",
"prettier": "^2.3.2",
"sass": "^1.43.4",
"sass-loader": "10",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0"
"stylelint-config-standard": "^22.0.0",
"tailwindcss": "^2.2.19"
}
}
11 changes: 11 additions & 0 deletions v2/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}

0 comments on commit 8027e80

Please sign in to comment.