Skip to content

Instantly share code, notes, and snippets.

CSS spinners

  • Leanest spinner
  • Circle spinner
  • Bidimensional spinner
@jasonheecs
jasonheecs / README.markdown
Created January 14, 2016 10:38 — forked from marijn/README.markdown
List of nationalities in YAML, CSV and TXT format

List of nationalities

It's time someone compiled a list of nationalities to use within a web application. This gist attempts to make a first move at that.

##List of countries

I've also compiled a list of countries

@jasonheecs
jasonheecs / Responsive Table CSS
Last active December 29, 2015 09:44
Basic CSS Styling to make a table responsive
$breakpoint-medium: 768px;
.responsiveTable {
thead tr {
position: absolute;
top: -9999px;
left: -9999px;
@media screen and (min-width: $breakpoint-medium) {
position: static;
input {
height: 34px;
width: 100%;
border-radius: 3px;
border: 1px solid transparent;
border-top: none;
border-bottom: 1px solid #DDD;
box-shadow: inset 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
}