Skip to content

Commit

Permalink
sin: lipu li jo e nasin lukin sin
Browse files Browse the repository at this point in the history
  • Loading branch information
pontaoski committed Jan 22, 2024
1 parent a527d45 commit 5a3c7e3
Show file tree
Hide file tree
Showing 41 changed files with 5,443 additions and 2,699 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/node_modules
/public
*/_gen
.DS_Store
.DS_Store
.hugo_build.lock
hugo_stats.json
13 changes: 13 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,16 @@ DefaultContentLanguage = "tok"
[security]
[security.exec]
allow = ['^go$', '^npx$', '^postcss$', '^babel$']


[build]
writeStats = true
[[build.cachebusters]]
source = "(postcss|tailwind)\\.config\\.js"
target = "css"
[[build.cachebusters]]
source = "assets/.*\\.(js|ts|jsx|tsx)"
target = "js"
[[build.cachebusters]]
source = "assets/.*\\.(.*)$"
target = "$1"
2,726 changes: 2,586 additions & 140 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,17 @@
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.17",
"grunt": "^1.3.0",
"lunr": "^2.3.9",
"lunr-hugo": "^0.1.2",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"string": "^3.3.3",
"tailwindcss": "^3.4.1",
"toml": "^3.0.0",
"yaml": "^1.10.0"
},
Expand Down
36 changes: 36 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
module.exports = {
darkMode: 'media',
content: [
"./themes/**/layouts/**/*.html",
"./content/**/layouts/**/*.html",
"./layouts/**/*.html",
"./content/**/*.html"
],
theme: {
extend: {
colors: {
cream: '#f9f4ed',
'cream-red': '#ffeff5',
'cream-orange': '#ffeacb',
'dark-cream': '#2a2a2a',
'dark-cream-red': '#352724',
'dark-cream-orange': '#30291f',
'lojunu': '#ffa4c5',
'loje': '#ffa893',
'lojelo': '#ffb777',
'jelo': '#cac976',
'graso': '#8ed890',
'laso': '#66dfc2',
'blaso': '#5bddfd',
'lasewi': '#76d0ff',
'lasunu': '#b3beff',
'unu': '#fbadff',
}
},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
]
}
6 changes: 6 additions & 0 deletions themes/lt/assets/css/postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
}
}
23 changes: 23 additions & 0 deletions themes/lt/assets/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind variants;

.page-item a {
@apply py-2 px-4 rounded-full hover:bg-laso/50 inline-block;
}

.page-item.active a {
@apply bg-laso hover:bg-lasewi;
}

.page-item.disabled a {
@apply opacity-50 hover:bg-transparent;
}
.page-item.disabled a {
@apply cursor-default;
}

.prose img {
@apply rounded-lg;
}
123 changes: 0 additions & 123 deletions themes/lt/assets/sass/_card.scss

This file was deleted.

3 changes: 0 additions & 3 deletions themes/lt/assets/sass/_card.scss.license

This file was deleted.

150 changes: 0 additions & 150 deletions themes/lt/assets/sass/_colors.scss

This file was deleted.

3 changes: 0 additions & 3 deletions themes/lt/assets/sass/_colors.scss.license

This file was deleted.

Loading

0 comments on commit 5a3c7e3

Please sign in to comment.