Declass - CSS Frameworks, Reimagined

Project URL: https://declass.glitch.me OR https://declass.netlify.app

It looks like I’m never going to get around to actually finishing this, so I’m just releasing it in beta:

Declass makes it easy to design a quick new webpage or add styling to a major project. Whether you need a good-looking blog, a simple personal site, or a stylish educational page, Declass’s dynamic design will turn the major task of making your page responsive into a simple job. Just copy the code to our free-to-use stylesheet and and paste it between the <head> tags on your site:

<link
  rel="stylesheet"
  href="https://declass.netlify.app/css/declass.min.css"
/>

Read more here

4 Likes

You could improve the transition between the dark and the light mode using the transition CSS property. Apply it to all elements for best results!

* {
   transition: 200ms;
}
2 Likes

Okay, thanks!