html, body {
  width:  100%;
  height: 100%;
  margin: 0px;
  overflow: hidden;
}

/* disable ui element selections */
body{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#picker {
  position: absolute;
  left: 0;
  top: 0;
  width: 350px;
  height: 555px;
  background: #ECECEC;
  -moz-border-bottom-right-radius: 25px;
	-webkit-border-bottom-right-radius: 25px;
	border-bottom-right-radius: 25px;
	opacity: 0.5;
}

#brushes {
  position: absolute;
  padding-top: 330px;
  padding-left: 31px;
}

.brush {
  width: 61px;
  height: 61px;
  padding-right: 9px;
  padding-bottom: 9px;
  float: left;
  border: 1px solid transparent;
}

.brush.selected {
  background: #BCBCBC;
  border: 1px solid orange;
}

div.brush:nth-child(5n) {
  clear: both;
}

/* //1//3//9//15//30//60//120//240 */

.brush-1 {
  width: 2px;
	height: 2px;
	background: black;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
	margin-left: 34px;
	margin-top: 34px;
}


.brush-2 {
  width: 4px;
	height: 4px;
	background: black;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	margin-left: 33px;
	margin-top: 33px;
}

.brush-3 {
  width: 6px;
	height: 6px;
	background: black;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin-left: 32px;
	margin-top: 32px;
}

.brush-4 {
  width: 10px;
	height: 10px;
	background: black;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-left: 30px;
	margin-top: 30px;
}

.brush-5 {
  width: 18px;
	height: 18px;
	background: black;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	border-radius: 9px;
	margin-left: 26px;
	margin-top: 26px;
}

.brush-6 {
  width: 26px;
	height: 26px;
	background: black;
	-moz-border-radius: 13px;
	-webkit-border-radius: 13px;
	border-radius: 13px;
	margin-left: 22px;
	margin-top: 22px;
}

.brush-7 {
  width: 38px;
	height: 38px;
	background: black;
	-moz-border-radius: 19px;
	-webkit-border-radius: 19px;
	border-radius: 19px;
	margin-left: 16px;
	margin-top: 16px;
}

.brush-8 {
  width: 50px;
	height: 50px;
	background: black;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	margin-left: 10px;
	margin-top: 10px;
}

#actions {
  position: absolute;
  margin-top: 495px;
  padding-left: 31px;
  margin-left: 20px;
}

#back {
  background: red;
}

#save {
  margin-left: 20px;
  background: orange;
}

#slideshow {
  margin-left: 20px;
  background: rgb(66, 184, 221);
}

/* pure */

.button-success,
.button-error,
.button-warning,
.button-secondary {
  color: white;
  border-radius: 4px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.button-success {
  background: rgb(28, 184, 65); /* this is a green */
}

.button-error {
  background: rgb(202, 60, 60); /* this is a maroon */
}

.button-warning {
  background: rgb(223, 117, 20); /* this is an orange */
}

.button-xsmall {
  font-size: 70%;
}

.button-small {
  font-size: 85%;
}

.button-large {
  font-size: 110%;
}

.button-xlarge {
  font-size: 125%;
}