All Projects → igoradamenko → Awsm.css

igoradamenko / Awsm.css

Licence: mit
Simple CSS library for semantic HTML markup

Projects that are alternatives of or similar to Awsm.css

Sempress
A highly semantic WordPress Theme with HTML5 templates, responsive and seo optimized. SemPress supports most of the new HTML5 tags, the new HTML5 input-types, microformats, microformats v2 and microdata (Schema.org).
Stars: ✭ 132 (-89.75%)
Mutual labels:  semantic, html5
Portfolio one Page Template
Free responsive one page portfolio template
Stars: ✭ 106 (-91.77%)
Mutual labels:  html5, pug
Kernel.css
The CSS framework built for any kind of task
Stars: ✭ 80 (-93.79%)
Mutual labels:  semantic
React Froala Design Blocks
React implementation for Froala Design Blocks.
Stars: ✭ 89 (-93.09%)
Mutual labels:  html5
Gulp Pug Sass Seed
🍹 A Pug and Sass starter project using gulp for task automation.
Stars: ✭ 84 (-93.48%)
Mutual labels:  pug
Larkplayer
🚀 A lightweight & flexible web player :)
Stars: ✭ 82 (-93.63%)
Mutual labels:  html5
Kodeweave
HTML/CSS/JS and Markdown Playground For Web Designers and Developers
Stars: ✭ 87 (-93.25%)
Mutual labels:  html5
Cube slam wu
Cube SLAM 个人注释版
Stars: ✭ 78 (-93.94%)
Mutual labels:  semantic
Springbootangularhtml5
♨️ Spring Boot 2 + Angular 11 + HTML5 router mode + HTTP interceptor + Lazy loaded modules
Stars: ✭ 89 (-93.09%)
Mutual labels:  html5
Vocol
An integrated environment to support collaborative ontology / vocabulary development in distributed settings
Stars: ✭ 83 (-93.56%)
Mutual labels:  semantic
Pico
Graceful & Minimal CSS design system in pure semantic HTML
Stars: ✭ 89 (-93.09%)
Mutual labels:  semantic
Html File Upload
Useful HTML file upload tips for web developers
Stars: ✭ 83 (-93.56%)
Mutual labels:  html5
Broken Link Checker
Find broken links, missing images, etc within your HTML.
Stars: ✭ 1,237 (-3.96%)
Mutual labels:  html5
Supermarket
设计精良的网上商城系统,包括前端、后端、数据库、负载均衡、数据库缓存、分库分表、读写分离、全文检索、消息队列等,使用SpringCloud框架,基于Java开发。该项目可部署到服务器上,不断完善中……
Stars: ✭ 1,278 (-0.78%)
Mutual labels:  html5
Binari
Interactive code editor with a live binary tree visual designed to teach new developers the fundamentals of dynamic programming.
Stars: ✭ 82 (-93.63%)
Mutual labels:  html5
Buddycss
The framework for people who love coding!
Stars: ✭ 89 (-93.09%)
Mutual labels:  html5
React Semantic Toasts
React Semantic UI notifications library
Stars: ✭ 80 (-93.79%)
Mutual labels:  semantic
Muse
🎧 All you need is a simple and diligent HTML 5 music player written in React.
Stars: ✭ 82 (-93.63%)
Mutual labels:  html5
Gt
Easily generate information-rich, publication-quality tables from R
Stars: ✭ 1,260 (-2.17%)
Mutual labels:  html5
Snapaper
📰 Past Papers Sharing Platform Based On Vue.js & GCE Guide | CAIE 试卷分享与下载平台
Stars: ✭ 90 (-93.01%)
Mutual labels:  html5

awsm.css

npm version

awsm.css is a simple CSS library for semantic HTML, which doesn't require classes, ids, attributes, etc.

Just start to create page with HTML5 tags, link awsm.css and get simple, clean and beautiful markup.

Check out examples or sample markup here.

Demo

Demo picture

Previous versions

Current master points to v3 of the library.

If you want to see or download previous versions, here they are:

Usage

<link rel="stylesheet" href="awsm.min.css">

Also don't forget to add viewport info to the <head> for adaptation to mobile. Like this:

<meta name="viewport" content="width=device-width, initial-scale=1.0">

It's also available as the PostCSS API.

Download

Download the latest version here — awsm.css.

Minified — awsm.min.css (≈3 Kb after gzip).

unpkg

Also you can use unpkg for link latest or exact version of library:

<link rel="stylesheet" href="https://unpkg.com/awsm.css/dist/awsm.min.css">

Get more information about the unpkg CDN on unpkg.com.

PostCSS API

If you install npm package, you can use library as PostCSS plugin:

const postcss = require('postcss');
const awsm = require('awsm.css');

postcss([awsm({ theme: 'tasman', sealed: true })]).process('a {color: red}').then(result => {
  console.log(result.css); // awsm.css prepends your CSS 
});

For more information about options check out docs.

Themes

Current version contains some themes that you can use.

Check them on the demo page.

Dark Mode Support

If you need a “Dark Mode” support, just inject two CSS files and use media queries:

<!-- CSS for users with dark mode -->
<link rel="stylesheet" href="awsm_theme_big-stone.min.css" media="(prefers-color-scheme: dark)">

<!-- CSS for users without dark mode -->
<link rel="stylesheet" href="awsm_theme_pearl-lusta.min.css" media="(prefers-color-scheme: no-preference), (prefers-color-scheme: light)">

(See #103 for other solutions.)

Why?

I have to create simple pages in my daily work. Sometimes it's compiled Markdown and sometimes it's pure HTML. I'd like to make them more beautiful without additional classes, ids, etc. So I did it.

License

awsm.css licensed under the MIT.

The MIT License places almost no restrictions on what you can do with this lib. You are free to use it in commercial projects as long as the copyright is left intact.

Examples

Website for this repo uses awsm.css. Check this out. Also there are examples of blog and homepage built with awsm.css.

And I use the lib for my own website.

If you use the library in your project, feel free to open issue and we will add your url in this list :)

v3

Short list of projects that use v3 of the library:

v2

List of projects that use v2 of the library:

Got questions? Any troubles?

If you have questions or general suggestions, don't hesitate to submit a new GitHub issue.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].