2016-04-15 10:56:51 +02:00

31 lines
567 B
SCSS

.button {
text-align: center;
display: inline-block;
margin: 0px;
padding: 10px;
position: relative;
border: none;
cursor: pointer;
border-radius: 3px;
white-space: nowrap;
text-overflow: ellipsis;
font-family: 'Open Sans Bold', sans-serif;
line-height: 20px;
font-size: 12px;
color: #fff;
background-color: rgba(255,255,255,0.10);
}
.button:hover {
background-color: rgba(255,255,255,0.25);
}
.button.short {
height: 30px;
padding-top: 5px;
padding-bottom: 5px;
vertical-align: middle;
}