mimic-css

0.0.83-alpha • Public • Published

mimic-css

mimic-css is a design system that allows you use standard CSS styles within the class attribute ALONG with Media Queries and Modifiers.

So you are enabled to write standard CSS such as display:flex and apply a media query inline within the class e.g.

<div class="large?display:flex">Some Text</div>

Which will result in the below class being generated for you and ensuring that the flex container is only applied when the screen size is greater than 1280px wide

@media (min-width: 1280px) {
  .large\?display\:flex {
    display: flex;
  }
}

You can also apply pseudo class like hover and focus inline with the class attribute

<div class="background-color:blue:hover">Some Text</div>

Which will create a class for you like this

.background-color\:blue\:hover:hover {
  background-color: blue;
}

From this you gain the benefits of using a design system but without the downside of losing your CSS knowledge at the same time

Install:

npm install --save-dev mimic-css

mimic-css is a development time process that watches for file changes to your web pages and create classes from them.

Usage

npx mimic

The app will search in the current folder (and all subfolders) for .html, .ts, .js and .astro files. Ouput will be sent to the file mimic.css which you can link:

<link rel="stylesheet" href="mimic.css" />

You can override where to base your scan for web pages using the -i flag

npx mimic-css -i ./src

You can also override where to output the generated CSS file using the -o flag

npx mimic-css -o ./styles/customname.css

Other options:

  • i: { type: "string", default: "./", alias: "input" },
  • o: { type: "string", default: "./mimic.css", alias: "output" },
  • e: { type: "string", default: "", alias: "exclude" },
  • l: { type: "boolean", default: false, alias: "lit" },

Magic Numbers

In order to reduce the amount of time spent looking up magic names in mimic-css there is one set of values used across the board:

  • xs
  • sm
  • md
  • lg
  • xl
  • 2xl

These specifiers will map to different Pixel Values depending upon the usage.

So for Fonts you'll have the below mapping:

  • xs: 8px
  • sm: 12px
  • md: 16px
  • lg: 24px
  • xl: 48px
  • 2xl: 92px

Whereas for Padding the mappings will be different:

  • xs: 2px
  • sm: 4px
  • md: 8px
  • lg: 20px
  • xl: 50px
  • 2xl: 200px

An example for Padding

<div class="padding-top:md">Some Text</div>

becomes

.padding-top\:md {
  padding-top: 8px;
}

And then for Font Size you will see

<div class="font-size:md">Some Text</div>
.font-size\:md {
  font-size: 16px;
}

Normal CSS will remain unchanged (bar a space inserted)

So the below:

<div class="display:flex">Some Text</div>

Becomes:

.display\:flex {
  display: flex;
}

Media Breakpoints

The 5 options we have for specifying media breakpoints are below:

  • extrasmall
  • small
  • medium
  • large
  • extralarge

Configuration

By default mimic-css will search .html files for classes to process

In order to serch additional files we can create a file named 'mimic.config.mjs'

So to also search javascript and react files we would create the below:

let config;

export default config = {
  extensions: [".html", ".js"],
};

Lit Integration

To include CSS in LitElements a good approach to take is Constructable Style Sheets. These require the CSS to be in a JS string and mimic-css provide this output in the file mimic.css.js for us when using the -l flag.

The generated file can be imported to a LitElement using the below syntax

import { TWStyles } from "../styles/mimic.css.js";

export class Header extends
  LitElement { static styles = [css``, TWStyles];

Readme

Keywords

none

Package Sidebar

Install

npm i mimic-css

Weekly Downloads

20

Version

0.0.83-alpha

License

ISC

Unpacked Size

170 kB

Total Files

106

Last publish

Collaborators

  • markjameshoward