houdini/app/assets/stylesheets/common/promote_button.css.scss

27 lines
535 B
SCSS
Raw Normal View History

2020-06-12 20:03:43 +00:00
/* License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE */
@import 'mixins';
.promote-button {
display: block;
margin: 20px auto;
text-align: center;
font-size: 20px;
font-weight: 600;
color: white;
background-color: #5ba2cf;
border-radius: 4px;
padding: 10px 0 12px 0;
@include opacity(0.8);
@include basic-transition(opacity);
i {
margin-right: 2px;
}
&:hover {
@include opacity(1);
color: white;
}
} //.promote-button