Skip to content

Instantly share code, notes, and snippets.

View mongoltolbo's full-sized avatar

Lkhamsuren Amarjargal mongoltolbo

View GitHub Profile
@mongoltolbo
mongoltolbo / glow.css
Created June 6, 2013 17:51 — forked from cam-gists/glow.css
glow
-webkit-animation-name: 'glow';
-webkit-animation-duration: .7s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
-webkit-animation-timing-function: ease-in-out;
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
@PDXIII
PDXIII / Nice Button Effect
Last active April 13, 2023 19:33
Less mixin for a nice button effect. see it in action http://pdxiii.github.io/JimmyStash
// see it in action http://pdxiii.github.io/JimmyStash
.buttonFX (@color) {
color: darken(@color, 30%);
border-top: solid 2px lighten(@color, 10%);
border-left: solid 2px lighten(@color, 10%);
border-right: solid 2px darken(@color, 10%);
border-bottom: solid 2px darken(@color, 10%);
background-color: @color;
box-shadow: inset 10px 10px 10px lighten(@color, 15%),
@mihaihuluta
mihaihuluta / app.js
Created April 26, 2013 11:54
main.js File
define(['angular',
'angularResource',
'controllers/controllers',
'services/services',
'filters/filters',
'directives/directives'],
function (angular) {
return angular.module('myapp', ['ngResource',
'myapp.controllers',
'myapp.services',
@ajiseco
ajiseco / Term: Sudo
Created October 13, 2012 13:53
Su Command
sudo passwd root
sudo -s
sudo tcsh
@kizu
kizu / dabblet.css
Created September 9, 2012 16:08
Oh, wow, vertical writing mode! Webkit only.
/**
* Oh, wow, vertical writing mode! Webkit only.
*/
html {
-webkit-writing-mode: vertical-rl;
-moz-writing-mode: vertical-rl;
-ms-writing-mode: vertical-rl;
-o-writing-mode: vertical-rl;
writing-mode: vertical-rl;