html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  height: 100%;
  font-size: 13px;
  font-weight: sans-serif;
}
/**
 * Button
 *
 * html:
 * 
 * <button type="button" class="button">
 *   <span class="icon icon-code"></span>
 *   <span class="text">MyButton</span>
 * </button>
 */
.button {
  display: inline-block;
  background-color: #ececec;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 0;
  box-sizing: border-box;
  transition: border-color 300ms;
  outline: none;
}
.button .text {
  padding: 0 5px;
  color: #1854b1;
  vertical-align: middle;
  line-height: 24px;
  font-size: 14px;
}
.button .icon {
  vertical-align: middle;
}
.button:hover {
  border: 1px solid #1854b1;
}
.button::-moz-focus-inner {
  border: none;
}
.button:focus {
  outline: none;
}
/**
 * Icon
 *
 * html:
 *
 * <any class="icon icon-code" />
 */
.icon {
  background-image: url('sprite-48.png');
  background-size: 24px 48px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.projectsListing {
  background-color: #ddd;
  border-radius: 7px;
  padding: 10px;
}
.projectsListing ul {
  list-style: none;
}
.projectsListing .name {
  width: 300px;
  display: inline-block;
  font-size: 14px;
  padding-right: 10px;
}
.projectsListing .branch {
  width: 100px;
  font-size: 11px;
  color: #004ad0;
  padding-right: 10px;
}
.projectsListing .ahead {
  display: inline-block;
  width: 16px;
  border-radius: 100%;
  background-color: #b10000;
  color: #fff;
  text-align: center;
  line-height: 16px;
  font-size: 11px;
  margin-right: 2px;
}
.projectsListing .behind {
  display: inline-block;
  width: 16px;
  border-radius: 100%;
  background-color: #b10000;
  color: #fff;
  text-align: center;
  line-height: 16px;
  font-size: 11px;
  margin-right: 2px;
}
