/*!
 * jQuery Chord Transposer plugin v1.0
 * http://codegavin.com/projects/transposer
 *
 * Copyright 2010, Jesse Gavin
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://codegavin.com/license
 *
 * Date: Sat Jun 26 21:27:00 2010 -0600
 */
span.c { 
  font-weight: bold; 
  color: #2159D6;
}

.transpose-keys {
  overflow: auto;
  font: normal 0.6875rem sans-serif;
  display: grid;
  grid-template: auto / auto auto auto auto auto auto auto auto auto;
}
.transpose-keys a { 
  cursor: pointer;
	display: block;
	float: left;
	width: 2.5em;
	text-align: center;
	margin: 0.25em .25em .25em 0.25em;
	color: var(--text-color, #333);
	background: var(--edit-color, #eee);
  border-radius: 5px;
	text-decoration: none;
	padding: .5em 0;
	border: solid 1px transparent;
	outline: none;
}
.transpose-keys a.default { 
  background: orange; 
  color: white;
}
.transpose-keys a.selected { 
  background: #2159D6; 
  color: #FFF;
}
