mirror of
https://github.com/nostalgic-css/NES.css.git
synced 2025-09-25 21:39:37 +02:00
Merge branch 'develop' into add-favicon-ico
This commit is contained in:
20
docs/avatars.stories.js
Normal file
20
docs/avatars.stories.js
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
import { storiesOf } from '@storybook/html'; // eslint-disable-line import/no-extraneous-dependencies
|
||||||
|
import { // eslint-disable-line import/no-extraneous-dependencies
|
||||||
|
withKnobs, radios, boolean,
|
||||||
|
} from '@storybook/addon-knobs';
|
||||||
|
|
||||||
|
const stories = storiesOf('Avatars', module);
|
||||||
|
stories.addDecorator(withKnobs);
|
||||||
|
|
||||||
|
stories.add('avatars', () => {
|
||||||
|
const options = radios('class', {
|
||||||
|
'is-small': 'is-small',
|
||||||
|
default: '',
|
||||||
|
'is-medium': 'is-medium',
|
||||||
|
'is-large': 'is-large',
|
||||||
|
}, '');
|
||||||
|
const isRounded = boolean('is-rounded', false) ? 'is-rounded' : '';
|
||||||
|
const selectedClasses = [isRounded, options].join(' ');
|
||||||
|
|
||||||
|
return `<img src="http://www.gravatar.com/avatar" class="nes-avatar ${selectedClasses}">`;
|
||||||
|
});
|
@@ -20,6 +20,7 @@ stories.add('icon', () => {
|
|||||||
'nes-charmander': 'nes-charmander',
|
'nes-charmander': 'nes-charmander',
|
||||||
'nes-squirtle': 'nes-squirtle',
|
'nes-squirtle': 'nes-squirtle',
|
||||||
'nes-smartphone': 'nes-smartphone',
|
'nes-smartphone': 'nes-smartphone',
|
||||||
|
'nes-kirby': 'nes-kirby',
|
||||||
'nes-phone': 'nes-phone',
|
'nes-phone': 'nes-phone',
|
||||||
'nes-octocat animate': 'nes-octocat animate',
|
'nes-octocat animate': 'nes-octocat animate',
|
||||||
'nes-ash': 'nes-ash',
|
'nes-ash': 'nes-ash',
|
||||||
|
15
index.html
15
index.html
@@ -94,6 +94,20 @@
|
|||||||
</label>
|
</label>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section class="nes-container with-title">
|
||||||
|
<h2 class="title">Avatars</h2>
|
||||||
|
<div>
|
||||||
|
<img src="http://www.gravatar.com/avatar" class="nes-avatar is-small">
|
||||||
|
<img src="http://www.gravatar.com/avatar" class="nes-avatar">
|
||||||
|
<img src="http://www.gravatar.com/avatar" class="nes-avatar is-medium">
|
||||||
|
<img src="http://www.gravatar.com/avatar" class="nes-avatar is-large">
|
||||||
|
<img src="http://www.gravatar.com/avatar" class="nes-avatar is-small is-rounded">
|
||||||
|
<img src="http://www.gravatar.com/avatar" class="nes-avatar is-rounded">
|
||||||
|
<img src="http://www.gravatar.com/avatar" class="nes-avatar is-medium is-rounded">
|
||||||
|
<img src="http://www.gravatar.com/avatar" class="nes-avatar is-large is-rounded">
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
<section class="form nes-container with-title">
|
<section class="form nes-container with-title">
|
||||||
<h2 class="title">Form</h2>
|
<h2 class="title">Form</h2>
|
||||||
<div class="nes-field">
|
<div class="nes-field">
|
||||||
@@ -294,6 +308,7 @@
|
|||||||
|
|
||||||
<i class="nes-smartphone"></i>
|
<i class="nes-smartphone"></i>
|
||||||
<i class="nes-phone"></i>
|
<i class="nes-phone"></i>
|
||||||
|
<i class="nes-kirby"></i>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@@ -7,3 +7,4 @@
|
|||||||
@import "balloons.scss";
|
@import "balloons.scss";
|
||||||
@import "tables.scss";
|
@import "tables.scss";
|
||||||
@import "progress.scss";
|
@import "progress.scss";
|
||||||
|
@import "avatar.scss";
|
||||||
|
23
scss/elements/avatar.scss
Normal file
23
scss/elements/avatar.scss
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
@mixin img-style($param) {
|
||||||
|
$size: $param * 16;
|
||||||
|
|
||||||
|
width: $size;
|
||||||
|
height: $size;
|
||||||
|
|
||||||
|
&.is-rounded {
|
||||||
|
border-radius: 50px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.nes-avatar {
|
||||||
|
@include img-style(2px);
|
||||||
|
|
||||||
|
&.is-small {
|
||||||
|
@include img-style(1px);
|
||||||
|
}
|
||||||
|
&.is-medium {
|
||||||
|
@include img-style(3px);
|
||||||
|
}
|
||||||
|
&.is-large {
|
||||||
|
@include img-style(4px);
|
||||||
|
}
|
||||||
|
}
|
@@ -14,3 +14,4 @@
|
|||||||
@import "squirtle.scss";
|
@import "squirtle.scss";
|
||||||
@import "phone.scss";
|
@import "phone.scss";
|
||||||
@import "smartphone.scss";
|
@import "smartphone.scss";
|
||||||
|
@import "kirby.scss";
|
||||||
|
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: $px * 15;
|
width: $px * 14;
|
||||||
height: $px * 15;
|
height: $px * 15;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
|
38
scss/pixel-arts/kirby.scss
Normal file
38
scss/pixel-arts/kirby.scss
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
.nes-kirby {
|
||||||
|
$px: 6px;
|
||||||
|
$kirby-colors: (#000, #ffaccc, #ff5478);
|
||||||
|
// prettier-ignore
|
||||||
|
$kirby: (
|
||||||
|
(0,0,1,1,0,1,1,1,1,1,0,0,0,0),
|
||||||
|
(0,1,2,2,1,2,2,2,2,2,1,1,0,0),
|
||||||
|
(1,2,2,1,2,2,2,2,2,2,2,2,1,0),
|
||||||
|
(1,2,2,2,2,2,1,2,1,2,2,2,2,1),
|
||||||
|
(1,2,2,2,2,2,1,2,1,2,2,2,2,1,),
|
||||||
|
(1,2,2,2,2,2,1,2,1,2,2,2,2,2,1),
|
||||||
|
(1,2,2,2,3,3,2,2,2,3,3,2,2,2,2,1),
|
||||||
|
(1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1),
|
||||||
|
(0,1,2,2,2,2,2,1,2,2,2,2,2,2,2,1),
|
||||||
|
(0,1,2,2,2,2,2,2,2,2,2,2,1,1,1,0),
|
||||||
|
(0,1,2,2,2,2,2,2,2,2,2,1,3,3,3,1),
|
||||||
|
(0,0,1,2,2,2,2,2,2,2,1,3,3,3,3,1),
|
||||||
|
(0,0,1,1,2,2,2,2,2,2,1,3,3,3,3,1),
|
||||||
|
(0,1,3,3,1,1,2,2,2,1,3,3,3,3,1),
|
||||||
|
(1,3,3,3,3,3,1,1,1,1,1,3,3,1),
|
||||||
|
(0,1,1,1,1,1,1,0,0,0,1,1,1,0)
|
||||||
|
);
|
||||||
|
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
width: $px * 16;
|
||||||
|
height: $px * 16;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
position: absolute;
|
||||||
|
top: $px * -1;
|
||||||
|
left: $px * -1;
|
||||||
|
content: "";
|
||||||
|
background: transparent;
|
||||||
|
|
||||||
|
@include pixelize($kirby, $kirby-colors, $px);
|
||||||
|
}
|
||||||
|
}
|
@@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: $px * 16;
|
width: $px * 14;
|
||||||
height: $px * 16;
|
height: $px * 16;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
|
25
style.css
25
style.css
@@ -30,13 +30,6 @@ div.tables > .nes-table:first-child {
|
|||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 768px) {
|
|
||||||
div.tables > .nes-table {
|
|
||||||
max-width: 100%;
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.balloon.nes-container .nes-balloon {
|
.balloon.nes-container .nes-balloon {
|
||||||
max-width: 600px;
|
max-width: 600px;
|
||||||
margin: 2rem 2rem;
|
margin: 2rem 2rem;
|
||||||
@@ -93,3 +86,21 @@ div.tables > .nes-table:first-child {
|
|||||||
.github-link > i.nes-octocat {
|
.github-link > i.nes-octocat {
|
||||||
align-self: flex-end;
|
align-self: flex-end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 768px) {
|
||||||
|
body {
|
||||||
|
padding: 0;
|
||||||
|
margin: 2rem 0.2rem;
|
||||||
|
}
|
||||||
|
div.tables > .nes-table {
|
||||||
|
max-width: 100%;
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
.balloon.nes-container .nes-balloon {
|
||||||
|
max-width: 70%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.github-link {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user