Login/Sign Up Get the Handbook
Unicorn Code Snippets
🦄

Unicorn Code Snippets

Across the bottom Gumroad Handbook.magicalunicornagency button:

<style>
    .unicorn-button {
        box-shadow: 0 20px 40px -10px rgba(241,168,216,0.8);
        transition: all .2s ease-in-out;
        background-color: #f1a8d8;
        letter-spacing: -0.5px;
        text-decoration: none;
        padding: 14px 24px;
        border-radius: 4px;
				text-align: center;
        font-weight: 500;
        position: fixed;
        z-index: 9999;
        color: #fff;
        width: 100%;
        bottom: 0;
    }
    .unicorn-button:hover {
        box-shadow: 0 20px 40px -10px rgba(148,219,247,0.8);
        background: #94dbf7;
    }
</style>
<script src="https://gumroad.com/js/gumroad.js"></script>
<a class="unicorn-button" href="https://gum.co/unicorn-handbook">Get the Handbook</a>

Top right corner Gumroad button:

<style>
    .unicorn-button {
        box-shadow: 0 20px 40px -10px rgba(241,168,216,0.8);
        transition: all .2s ease-in-out;
        background-color: #f1a8d8;
        letter-spacing: -0.5px;
        text-decoration: none;
        padding: 14px 24px;
        border-radius: 4px;
        font-weight: 500;
        position: fixed;
        z-index: 9999;
        color: #fff;
        right: 24px;
        top: 24px;
    }
    .unicorn-button:hover {
        box-shadow: 0 20px 40px -10px rgba(148,219,247,0.8);
        background: #94dbf7;
    }
</style>
<script src="https://gumroad.com/js/gumroad.js"></script>
<a class="unicorn-button" href="https://gum.co/unicorn-handbook">Get the Handbook</a>

Memberspace button:

<script>
var MemberSpace = window.MemberSpace || {subdomain: "GETTHISFROMMEMBERSPACE"};
(function(d){
  var s = d.createElement("script");
  s.src = "https://cdn.memberspace.com/scripts/widgets.js";
  var e = d.getElementsByTagName("script")[0];
  e.parentNode.insertBefore(s,e);
}(document));
</script>

<style>
    .memberspace-button {
        box-shadow: 0 20px 40px -10px rgba(241,168,216,0.8);
        transition: all .2s ease-in-out;
        background-color: #f1a8d8;
        letter-spacing: -0.5px;
        text-decoration: none;
        padding: 14px 24px;
        border-radius: 4px;
        font-weight: 500;
        position: fixed;
        z-index: 9999;
        color: #fff;
        right: 210px;
        top: 24px;
	display: inline-block;
    }
    .memberspace-button:hover {
        box-shadow: 0 20px 40px -10px rgba(148,219,247,0.8);
        background: #94dbf7;
    }
</style>
<a class=memberspace-button href="getthisfrommemberspace">Login/Sign Up</a>