<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.button{
	color: white;
	background: #04ade7;
}

/* Button */
/* cupid green (inspired by okcupid.com)
*******************************************************************************/
button.cupid-green {
  background-color: #149dca;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #149dca), color-stop(100%, #23b7e8));
  background-image: -webkit-linear-gradient(top, #149dca 0%, #23b7e8 100%);
  background-image: -moz-linear-gradient(top, #149dca, #23b7e8);
  background-image: -ms-linear-gradient(top, #149dca, #23b7e8);
  background-image: -o-linear-gradient(top, #149dca, #23b7e8);
  background-image: linear-gradient(top, #149dca, #23b7e8);
  border: 1px solid #149dca;
  border-bottom: 1px solid #149dca;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 0 #149dca;
  -moz-box-shadow: inset 0 1px 0 0 #149dca;
  box-shadow: inset 0 1px 0 0 #149dca;
  color: #fff;
  font: bold 11px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  line-height: 1;
  padding: 7px 0 8px 0;
  text-align: center;
  text-shadow: 0 -1px 0 #149dca;
  width: 150px; 
}
button.cupid-green:hover {
    background-color: #1892ba;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1892ba), color-stop(100%, #20a5d1));
    background-image: -webkit-linear-gradient(top, #1892ba 0%, #20a5d1 100%);
    background-image: -moz-linear-gradient(top, #1892ba, #20a5d1);
    background-image: -ms-linear-gradient(top, #1892ba, #20a5d1);
    background-image: -o-linear-gradient(top, #1892ba, #20a5d1);
    background-image: linear-gradient(top, #1892ba, #20a5d1);
    -webkit-box-shadow: inset 0 1px 0 0 #1892ba;
    -moz-box-shadow: inset 0 1px 0 0 #1892ba;
    box-shadow: inset 0 1px 0 0 #1892ba;
    cursor: pointer; 
}</pre></body></html>