All Projects â†’ micah5 â†’ Psone.css

micah5 / Psone.css

Licence: mit
🎮 PS1 style CSS Framework, inspired by NES.css

Projects that are alternatives of or similar to Psone.css

cra-tailwindcss
Integrate Tailwind CSS in a Create React App setup
Stars: ✭ 105 (-71.39%)
Mutual labels:  css-framework
Sakura
🌸 a minimal css framework/theme.
Stars: ✭ 3,241 (+783.11%)
Mutual labels:  css-framework
Teutonic Css
A modern CSS framework — versatile, well documented.
Stars: ✭ 308 (-16.08%)
Mutual labels:  css-framework
shipyard
A lightweight, CSS framework for Rails & Jekyll applications
Stars: ✭ 16 (-95.64%)
Mutual labels:  css-framework
Front End Web Development Resources
This repository contains content which will be helpful in your journey as a front-end Web Developer
Stars: ✭ 3,452 (+840.6%)
Mutual labels:  css-framework
Scally
Scally is a Sass-based, BEM, OOCSS, responsive-ready, CSS framework that provides you with a solid foundation for building reusable UI's quickly 🕶
Stars: ✭ 294 (-19.89%)
Mutual labels:  css-framework
brevis
CSS at scale
Stars: ✭ 62 (-83.11%)
Mutual labels:  css-framework
Isometricsass
Sass library to make isometric 2D without javascript
Stars: ✭ 331 (-9.81%)
Mutual labels:  css-framework
Mini.css
A minimal, responsive, style-agnostic CSS framework!
Stars: ✭ 2,938 (+700.54%)
Mutual labels:  css-framework
Pattern.css
CSS only library to fill empty background with beautiful patterns.
Stars: ✭ 3,481 (+848.5%)
Mutual labels:  css-framework
Pavilion
Pavilion CSS Framework. A solid starting point without the bloat.
Stars: ✭ 259 (-29.43%)
Mutual labels:  css-framework
Bulma Helpers
Library with missing Functional / Atomic CSS classes for Bulma framework
Stars: ✭ 263 (-28.34%)
Mutual labels:  css-framework
Modulz Original Design System Archive
An open-source design system for building scalable, responsive websites and applications.
Stars: ✭ 300 (-18.26%)
Mutual labels:  css-framework
animadio
Animadio CSS Framework
Stars: ✭ 24 (-93.46%)
Mutual labels:  css-framework
Filters.css
CSS only library to apply color filters.
Stars: ✭ 318 (-13.35%)
Mutual labels:  css-framework
differs
WIP: Building CSS framework using Sass...
Stars: ✭ 62 (-83.11%)
Mutual labels:  css-framework
Smart Css Grid
SMART CSS GRID - CSS Framework
Stars: ✭ 291 (-20.71%)
Mutual labels:  css-framework
Fractures
Baseline atomic CSS toolkit.
Stars: ✭ 362 (-1.36%)
Mutual labels:  css-framework
Nes.css
NES-style CSS Framework | ファミコン風CSSフレームワーク
Stars: ✭ 17,912 (+4780.65%)
Mutual labels:  css-framework
Grayshift
A lightweight front-end component library for developing fast and powerful web interfaces.
Stars: ✭ 304 (-17.17%)
Mutual labels:  css-framework

PSone.css

description

Please feel free to submit a pull request, no matter how small. I love getting them.

At the moment there's just a CSS file that you can link to:

<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/98mprice/[email protected]/PSone.min.css">

I hope to add some JS eventually to help with progressbars etc.

Reference

Container

From FF7

<div class="container">
  <label class="title">Default</label>
  <p>Kick! Punch! It's all in the mind.</p>
</div>
<div class="container dark">
  <label class="title">dark</label>
  <p>You see, the island is the site of a secret nuclear
   weapons disposal facility.</p>
</div>
<div class="container light">
  <label class="title">light</label>
  <p>Crash, Crash? Are you there Crash? ... Are you there Crash?</p>
</div>

Button

From Tekken 3

<button type="button" class="btn">Normal</button>
<button type="button" class="btn primary">Primary</button>
<button type="button" class="btn success">Success</button>
<button type="button" class="btn warning">Warning</button>
<button type="button" class="btn error">Error</button>

Progress bar

From MGS1

<div class="progress">
  <div class="bar" style="width: 80%"></div>
  <div class="subtitle">Default</div>
</div>
<div class="progress primary">
  <div class="bar" style="width: 100%"></div>
  <div class="subtitle">primary</div>
</div>
<div class="progress success">
  <div class="bar" style="width: 40%"></div>
  <div class="subtitle">success</div>
</div>
<div class="progress warning">
  <div class="bar" style="width: 60%"></div>
  <div class="subtitle">warning</div>
</div>
<div class="progress error">
  <div class="bar" style="width: 20%"></div>
  <div class="subtitle">error</div>
</div>
<div class="progress indeterminate">
  <div class="bar"></div>
  <div class="subtitle">indeterminate</div>
</div>

Radio Button

From the PS1 memory card screen

<label>
  <input type="radio" name="test" value="small" checked>
  <span class="option">Yes
    <span class="click"></span>
  </span>
</label>

Input

From FF7

<div class="field">
  <label>Default</label>
  <input type="text" class="input">
</div>
<div class="field is-inline">
  <label>With placeholder</label>
  <input type="text" class="input" placeholder="Jill Valentine">
</div>

Development

contributions welcome

Fork the project and enter this commands in your terminal

git clone https://github.com/YOUR_GITHUB_USERNAME/PSone.css.git
cd PSone.css
npm install

Storybook

For visual testing, this project contains storybook which you can run by doing the next command

$ npm run storybook

Demo

The demo page is located in index.html. If you want to change something there, you can use the next command

$ npm run dev
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].