.github-activity {
  font-size: 80%;
  background: #fff;
  border: 1px solid #777;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.github-activity.loading {
  background: #333 url(img/spinner.gif) no-repeat 50% 50%;
  min-height: 50px;
}

.github-activity .events-wrapper {
  height: 100%;
  overflow: auto;
  margin: 0 8px;
}

.github-activity .event {
  margin: 8px 0; /* collapse */
  padding: 0;
  border: 0;
}

.github-activity p {
  margin: 0;
  padding: 0;
}

.github-activity .event p.title {
  color: #666;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  background-color: #f1f1f1;
  background-image: -moz-linear-gradient(top, #f1f1f1, #e1e1e1); 
  background-image: -ms-linear-gradient(top, #f1f1f1, #e1e1e1); 
  background-image: -o-linear-gradient(top, #f1f1f1, #e1e1e1); 
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#e1e1e1)); 
  background-image: -webkit-linear-gradient(top, #f1f1f1, #e1e1e1); 
  background-image: linear-gradient(top, #f1f1f1, #e1e1e1);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f1f1f1', EndColorStr='#e1e1e1');
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-right-radius: 10px;
  height: 20px;
  line-height: 20px;
}

.github-activity .event p.title .when {
  color: #999;
  float: right;
  text-align: right;
  height: 100%;
  width: 12%;
  padding-right: 2%;
  overflow: hidden;
  white-space: nowrap;
}

.github-activity .event p.title .what {
  display: inline-block;
  height: 100%;
  width: 85%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.github-activity .event p.title img {
  vertical-align: middle;
  width: 20px;
}

.github-activity .event p.details {
  color: #555;
}

