B.C.Rikko
B.C.Rikko
I asked Nintendo about the copyright of the character contents.(Mario, Pokémon, Kirby) But I didn't get a clear answer. Nintendo responded, "Consult a lawyer or professional. We don't license character...
I consulted the legal department of our company just now. This is not good news. 😱 They said we infringed Nintendo's copyright. I'd like to propose the following measures. *...
> NES.css shouldn't have a polyfill Sure. I agree. 👍 I don't intend to support IE11 on NES.css. 🤔 Because Windows 7 will no longer be supported in 2020. Then,...
```html default dark primary default dark primary ``` ```scss $black: #333; $white: #e4e4e4; $blue: #1E9CEE; :root, .is-light { --bd-color: $black; --bg-color: $white; --color: $black; } [data-theme=dark], .is-dark { --bd-color: $white;...
### Structure a scss project Refer to the SASS The 7-1 Pattern. https://sass-guidelin.es/#the-7-1-pattern ``` ./ |- base | |- reboot.scss | |- override |- abstracts | |- variables | |-...
### 🎨Sharing color theme ```scss // Japanese Style Theme $japanese-apricot: #EAADBD; $viola-mandshurica: #554562; $sakura: #FADBE0; [data-theme=japanese-style] { .is-primary { --color: $viola-mandshurica; --border-color: $viola-mandshurica; --background-color: $sakura; --shadow-color: $japanese-appricot; } } ```...
Since there is a possibility of conflict CSS Variable names, it's better to prefix variable names. 🤔 ```scss // `--nes-` + `` :root { --nes-background-color: $white; --nes-color: $black; } ```...
### Why use CSS Custom Properties(CSS Variables) instead of Sass variables NES.css is often loaded via the CDN. Therefore, many users don't use the Sass variables. I thought CSS Custom...
Proposal repository 🛠 https://github.com/BcRikko/NES.css-proposal
I want to use [dart-sass](https://github.com/sass/dart-sass). 😎 Because We can use New Sass Module System(`@use` and `@forward`). ## 📚 Examples ### `@use` ```scss // base/_variables.scss $font-family: "Press Start 2P" !default; $font-size:...