All Projects → nostalgic-css → Nes.css

nostalgic-css / Nes.css

Licence: mit
NES-style CSS Framework | ファミコン風CSSフレームワーク

Programming Languages

SCSS
7915 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Nes.css

Teutonic Css
A modern CSS framework — versatile, well documented.
Stars: ✭ 308 (-98.28%)
Mutual labels:  css-framework, scss
Bulma Scss
Bulma SCSS - The Bulma CSS Framework files converted to SCSS syntax
Stars: ✭ 143 (-99.2%)
Mutual labels:  css-framework, scss
Basis
A lightweight responsive Sass/CSS framework based on flexible box.
Stars: ✭ 133 (-99.26%)
Mutual labels:  css-framework, scss
Tacit
CSS Framework for Dummies, Without Classes
Stars: ✭ 1,344 (-92.5%)
Mutual labels:  css-framework, scss
Charts.css
Open source CSS framework for data visualization.
Stars: ✭ 4,595 (-74.35%)
Mutual labels:  css-framework, scss
Animxyz
The first truly composable CSS animation library. Built for Vue, React, SCSS, and CSS, AnimXYZ will bring your website to life.
Stars: ✭ 1,689 (-90.57%)
Mutual labels:  css-framework, scss
Puppertino
A CSS framework based on Human Guidelines from apple
Stars: ✭ 138 (-99.23%)
Mutual labels:  css-framework, scss
Mustard Ui
A starter CSS framework that actually looks good.
Stars: ✭ 968 (-94.6%)
Mutual labels:  css-framework, scss
Shorthand
Feature rich CSS framework for the new decade https://shorthandcss.com
Stars: ✭ 230 (-98.72%)
Mutual labels:  css-framework, scss
Buttercake
Material Design Components, Responsive and Modern CSS Framework Built with Flexbox 🍰
Stars: ✭ 178 (-99.01%)
Mutual labels:  css-framework, scss
Avalanche
A package based CSS framework.
Stars: ✭ 86 (-99.52%)
Mutual labels:  css-framework, scss
Bootstrap
The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.
Stars: ✭ 154,459 (+762.32%)
Mutual labels:  css-framework, scss
Bem Kit
💄 CSS UI kit with BEM convention and SASS
Stars: ✭ 69 (-99.61%)
Mutual labels:  css-framework, scss
Fictoan
Mockups with markup — https://sujan-s.github.io/fictoan/
Stars: ✭ 114 (-99.36%)
Mutual labels:  css-framework, scss
Availity Uikit
Availity UI Kit powered by Bootstrap 4
Stars: ✭ 44 (-99.75%)
Mutual labels:  css-framework, scss
Lc Design
A UI component framework for building LCUI application.
Stars: ✭ 134 (-99.25%)
Mutual labels:  css-framework, scss
Hive Framework
A website development framework built with Sass, and incorporating jQuery UI.
Stars: ✭ 14 (-99.92%)
Mutual labels:  css-framework, scss
Bojler
Bojler is an email framework
Stars: ✭ 885 (-95.06%)
Mutual labels:  css-framework, scss
Flexible Grid
Flexible grid layouts to get you familiar with building within the flexible grid system.(HTML, CSS, SASS, SCSS)
Stars: ✭ 154 (-99.14%)
Mutual labels:  css-framework, scss
Aqua.css
An elegant CSS Framework.
Stars: ✭ 253 (-98.59%)
Mutual labels:  css-framework, scss

NES.css is a NES-style(8bit-like) CSS Framework.

Gitter Commitizen friendly

Installation

Styles

NES.css is available via either npm (preferred), Yarn, or a CDN.

via package manager

npm install nes.css
# or
yarn add nes.css

Our package.json contains some additional metadata under the following keys:

  • sass - path to our main Sass source file
  • style - path to our non-minified CSS
AltCSS(sass, scss...)
// style.scss
@import "./node_modules/nes.css/css/nes.css"
JavaScript
// script.js
import "nes.css/css/nes.min.css";

You need to install css-loader.

HTML
<!-- index.html -->
<html>
  <head>
    <link rel="stylesheet" href="./node_modules/nes.css/css/nes.min.css">
  </head>
  <body></body>
</html>

via CDN

Import the CSS via a <link /> element:

<!-- minify -->
<link href="https://unpkg.com/[email protected]/css/nes.min.css" rel="stylesheet" />
<!-- latest -->
<link href="https://unpkg.com/nes.css@latest/css/nes.min.css" rel="stylesheet" />
<!-- core style only -->
<link href="https://unpkg.com/nes.css/css/nes-core.min.css" rel="stylesheet" />

Fonts

NES.css doesn't provide any fonts, but we do maintain the following list of fonts that we recommend for usage alongside the library.

Language Font
(Default) Press Start 2P
English Kongtext
Japanese 美咲フォント
Japanese Nu もち
Korean 둥근모꼴
Chinese Zpix (最像素)

Usage

NES.css only provides components. You will need to define your own layout.

The recommended font for NES.css is Press Start 2P. However, Press Start 2P only supports English characters. When you're using this framework with any language other than English, please use another font. Follow the Google Fonts instructions about how to include them, or simply include it as below:

<head>
    <link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
    <link href="https://unpkg.com/nes.css/css/nes.css" rel="stylesheet" />

    <style>
      html, body, pre, code, kbd, samp {
          font-family: "font-family you want to use";
      }
    </style>
</head>

CSS Only

NES.css only requires CSS and doesn't depend on any JavaScript.

Browser Support

NES.css is compatible with the newest version of the following browsers:

  • Chrome
  • Firefox
  • Safari

Untested

  • IE/Edge

Copyright and license

Code and documentation copyright 2018 B.C.Rikko. Code released under the MIT License. Docs released under Creative Commons.

Development

If you'd like to help us out with the project, we welcome contributions of all types! Check out our CONTRIBUTING.md for more details on how you can help make NES.css amazing!

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].