Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View redgoose-dev's full-sized avatar
🪶
Chaos

redgoose.eth redgoose-dev

🪶
Chaos
View GitHub Profile
@redgoose-dev
redgoose-dev / hairline.html
Created July 23, 2015 07:50
border hair line. border-width: 0.5px
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>hair line demo</title>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<link rel="stylesheet" href="./style.css"/>
</head>
<body>
@redgoose-dev
redgoose-dev / rg-icon.html
Created January 28, 2015 08:03
icon interaction
<section>
<h1>Icons</h1>
<ul class="items">
<li>
<div>
<span class="rg-icon hamburger"><i>list</i></span>
</div>
</li>
<li>
<div><span class="rg-icon cross"><i>add/close</i></span></div>
@redgoose-dev
redgoose-dev / copyClipboard.js
Last active August 29, 2015 14:14
Copy the text to the clipboard
/**
* Copy the text to the clipboard
*
* @Param {String} : copy text
* @Param {String} : prompt message
* @Return void
*/
var copyClipboard = function(str, msg)
{
if (window.clipboardData)