Skip to content

Instantly share code, notes, and snippets.

View talnetd's full-sized avatar

talnetd talnetd

View GitHub Profile
@talnetd
talnetd / dabblet.css
Created April 27, 2012 17:13
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@talnetd
talnetd / dabblet.css
Created April 27, 2012 17:14
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #ddd;
background: linear-gradient(ddd, #f06, fff);
min-height: 100%;
@talnetd
talnetd / dabblet.css
Created June 14, 2012 02:34
Start to play with dabblet[dot]com
/**
* Start to play with dabblet[dot]com
*/
div.heading {
position: relative;
background: linear-gradient(60deg, #f06, yellow);
border-radius: 20px;
padding: 20px;
font-size: 50px;
}
@talnetd
talnetd / dabblet.css
Created October 28, 2012 05:35
Untitled
div.element{
width:150px;
height:150px;
background:#dddddd;
position:relative;
padding:20px;
}
@talnetd
talnetd / index.html
Created June 21, 2013 10:00
A CodePen by Tin Aung Linn. Html5 Context Menu - Inspired from David and tweet myself a little. Just miss obey DRY :P.
<section id="header" contextmenu="mymenu">
<header>
<h1>HTML5</h1>
<menu type="context" id="mymenu">
<menuitem label="Refresh Post" onclick="window.location.reload();" >
</menuitem>
<menu label="Share on...">
<menuitem label="Twitter" onclick="goShare('http://twitter.com/intent/tweet?text=' + document.title + ': ' + window.location.href);">
</menuitem>
<menuitem label="Facebook" onclick="goShare('http://facebook.com/sharer/sharer.php?u=' + window.location.href);">
@talnetd
talnetd / context-menu
Created June 21, 2013 10:03
Inspired from David and tweak myself for a better internal understanding.
<!doctype html>
<html>
<head>
<title>Html5 Context Menu</title>
<style type="text/css">
body {
padding:0;
margin:0;
}
.container {
@talnetd
talnetd / context-menu
Created June 21, 2013 10:04
Inspired from David and tweak myself for a better internal understanding.
<!doctype html>
<html>
<head>
<title>Html5 Context Menu</title>
<style type="text/css">
body {
padding:0;
margin:0;
}
.container {
Last login: Thu Jul 4 07:20:58 on ttys001
Tin-Aung-Linn:~ tal$ cd ~/tinaunglinn.com/octopress
==============================================================================
= NOTICE =
==============================================================================
= RVM has encountered a new or modified .rvmrc file in the current directory =
= This is a shell script and therefore may contain any shell commands. =
= =
= Examine the contents of this file carefully to be sure the contents are =
= safe before trusting it! ( Choose v[iew] below to view the contents ) =
@talnetd
talnetd / view.scss
Created July 13, 2013 12:06
Prompt Out with scss
$colorWhite : #f0f0f0;
$colorBlack : #090909;
$mmFont : Padauk , Tharlon , Myanmar Mn;
$padShort : 10px;
body {
header {
display: block;
padding: 0px;
margin:auto;
@talnetd
talnetd / view.css
Created July 13, 2013 12:21
Generated by scss
body {
margin: 0;
padding: 0;
font-size: 100%;
font-weight: normal;
font-family: Padauk, Tharlon, Myanmar Mn; }
body header {
display: block;
padding: 0px;
margin: auto; }