Skip to content

Instantly share code, notes, and snippets.

View khatrinitesh's full-sized avatar
🎯
Focusing

Nitesh Khatri khatrinitesh

🎯
Focusing
View GitHub Profile
@lrobeson
lrobeson / SassMeister-input.scss
Created February 7, 2014 00:15
Example of Sass mixins. Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
@mixin buttonstyle {
background: red;
border: 1px solid black;
color: #fff;
}
@davfre
davfre / git_cheat-sheet.md
Last active September 9, 2026 13:34
git commandline cheat-sheet
@shazinahmed
shazinahmed / gist:5894181
Last active November 30, 2020 11:19
Google Places Autocomplete font size/style
/*
The div that holds all the lines
*/
.pac-container {
color: #d9d9d9;
}
/*
class for each line of the result
*/
@andysolomon
andysolomon / sass.scss
Created May 15, 2013 22:57
sass mixins
// Mixins and examples
/* Responsive Breakpoints
========================================================================== */
@mixin breakpoint($point) {
@if $point == large {
@media (min-width: 64.375em) { @content; }
}
@else if $point == medium {
@media (min-width: 50em) { @content; }
@keeguon
keeguon / countries.json
Created April 5, 2012 11:11
A list of countries in JSON
[
{name: 'Afghanistan', code: 'AF'},
{name: 'Åland Islands', code: 'AX'},
{name: 'Albania', code: 'AL'},
{name: 'Algeria', code: 'DZ'},
{name: 'American Samoa', code: 'AS'},
{name: 'AndorrA', code: 'AD'},
{name: 'Angola', code: 'AO'},
{name: 'Anguilla', code: 'AI'},
{name: 'Antarctica', code: 'AQ'},