Skip to content

Instantly share code, notes, and snippets.

View junu126's full-sized avatar
🥴
I'm strong!

_junukim junu126

🥴
I'm strong!
View GitHub Profile
@junu126
junu126 / README.md
Created September 20, 2018 23:28 — forked from roachhd/README.md
EMOJI cheatsheet 😛😳😗😓🙉😸🙈🙊😽💀💢💥✨💏👫👄👃👀👛👛🗼🔮🔮🎄🎅👻

EMOJI CHEAT SHEET

Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. ✈ Got flash enabled? Click the emoji code and it will be copied to your clipboard.

People

:bowtie: 😄

@junu126
junu126 / Dustytemplate.css
Created July 19, 2018 07:31
Dusty프로젝트 - 컴포넌트 - 템플릿
@import url('//cdn.rawgit.com/innks/NanumSquareRound/master/nanumsquareround.min.css');
.main {
font-family: 'NanumSquareRound', sans-serif;
font-weight: 300;
border: solid rgb(230, 230, 230) 7px;
width: 62%;
height: 28em;
padding: 0;
margin-top: -14em;
@junu126
junu126 / Dustytemplate.js
Created July 19, 2018 07:31
Dusty프로젝트 - 컴포넌트 - 템플릿
import React from 'react';
import Icon from './Img/Icon.png';
import Logo from './Img/Logo.png';
import './Dustytemplate.css';
const Dustytemplate = ({change, time, morning, weather, dustyConcentration, onoff}) => {
return (
<main className="main">
<div className="border-top-left"></div>
<div className="border-top-right"></div>
@junu126
junu126 / Concentration.css
Created July 19, 2018 07:29
Dusty프로젝트 - 컴포넌트 -Concentration
@import url('//cdn.rawgit.com/innks/NanumSquareRound/master/nanumsquareround.min.css');
.Con {
font-family: 'NanumSquareRound', sans-serif;
font-weight: 300;
width: 320px;
position: absolute;
left: 50%;
margin-left: -160px;
bottom: 0;
@junu126
junu126 / Concentraion.js
Created July 19, 2018 07:29
Dusty프로젝트 - 컴포넌트 -Concentration
import React from 'react';
import './Concentration.css'
const Concentration = ({density,emotion }) => {
return (
<div className="Con">
<span className="upper-left">미세먼지 농도</span>
<span className="upper-right">{emotion}</span>
<span className="under">{density}</span>
@junu126
junu126 / Dustytime.css
Created July 19, 2018 07:29
Dusty프로젝트 - 컴포넌트 -time
@import url('//cdn.rawgit.com/innks/NanumSquareRound/master/nanumsquareround.min.css');
.clock {
align-items: center;
text-align: center;
width: 20%;
position: relative;
left: 50%;
margin-left: -10%;
margin-top: 40px;
@junu126
junu126 / Dustytime.js
Created July 19, 2018 07:29
Dusty프로젝트 - 컴포넌트 -time
import React from 'react';
import './Dustytime.css'
const Dustytime = ({time, day}) => {
return (
<div className="clock">
<span className="time">
<span className="fuck">:</span>
{time}
@junu126
junu126 / Onoff.js
Created July 19, 2018 07:27
Dusty프로젝트 - 컴포넌트 - onoff
import React from 'react';
import './Onoff.css';
const onoff = ({ball, turn}) => {
return (
<div className="onoff">
<span className="use">Dusty가동중</span>
<span className="turn"><sup className={ball}>&bull;</sup>{turn}</span>
</div>
);
@junu126
junu126 / Onoff.css
Created July 19, 2018 07:27
Dusty프로젝트 - 컴포넌트 - onoff
@import url('//cdn.rawgit.com/innks/NanumSquareRound/master/nanumsquareround.min.css');
.onoff {
font-family: 'NanumSquareRound', sans-serif;
font-weight: 300;
position: absolute;
right: 0;
bottom: 0;
margin: 20px;
}
@junu126
junu126 / Dustyweather.css
Created July 19, 2018 07:24
Dusty프로젝트-컴포넌트-weather
.d-weather {
font-size: 32pt;
width: 180px;
line-height: 60px;
margin-right: 20px;
right:0;
position: absolute;
text-align: right;
}