.news {
  box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.5);
  width: 100%;
  height: 35px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 4px;
  padding: 3px;
  -webkit-user-select: none;
  display: flex;
  align-content: space-between;
} 

.news span {
  color: #fff;
  padding: 6px;
  position: relative;
  top: 1%;
  border-radius: 4px;
  box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4);
  font: 16px 'Raleway', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  cursor: pointer;
  flex: 0 0 auto;
}

.news ul {
  margin-top: 0;
  padding: 0;
  margin-left: 10px;
  list-style-type: none;  
  flex: 1 1 auto;
  transition: margin 700ms;
  -webkit-user-select: none;
}

.news ul li {
  line-height: 30px; 
  list-style: none;
}

.news ul li a {
  color: #fff;
  text-decoration: none;
  font: 14px 'Raleway',Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
    overflow: hidden;
  white-space:nowrap; 
  text-overflow: ellipsis;  
}

/* OTHER COLORS */
.blue { background: #347fd0 }
.blue span { background: #2c66be }
.red { background: #d23435 }
.red span { background: #c22b2c }
.green { background: #699B67 }
.green span { background: #547d52 }
.magenta { background: #b63ace }
.magenta span { background: #842696 }