Skip to content

Commit

Permalink
new design
Browse files Browse the repository at this point in the history
  • Loading branch information
xash3000 committed Feb 12, 2025
1 parent 9fdc4f4 commit cb32d12
Show file tree
Hide file tree
Showing 2 changed files with 214 additions and 127 deletions.
13 changes: 11 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if (theme.fonts.font_family.secondary) {
module.exports = {
content: ["./hugo_stats.json"],
safelist: [{ pattern: /^swiper-/ }],

theme: {
screens: {
sm: "540px",
Expand All @@ -44,6 +44,15 @@ module.exports = {
padding: "2rem",
},
extend: {
animation: {
'fade-in-up': 'fadeInUp 0.5s ease-out',
},
keyframes: {
fadeInUp: {
'0%': { opacity: 0, transform: 'translateY(20px)' },
'100%': { opacity: 1, transform: 'translateY(0)' },
},
},
colors: {
text: theme.colors.default.text_color.default,
light: theme.colors.default.text_color.light,
Expand All @@ -54,7 +63,7 @@ module.exports = {
border: theme.colors.default.theme_color.border,
"theme-light": theme.colors.default.theme_color.theme_light,
"theme-dark": theme.colors.default.theme_color.theme_dark,

},
fontSize: {
base: font_base + "px",
Expand Down
Loading

0 comments on commit cb32d12

Please sign in to comment.