Skip to content

Instantly share code, notes, and snippets.

@graemeboy
Created February 22, 2015 04:40
Show Gist options
  • Save graemeboy/6414372b5a21f0f713e6 to your computer and use it in GitHub Desktop.
Save graemeboy/6414372b5a21f0f713e6 to your computer and use it in GitHub Desktop.
Blue Logout Button CSS
.exit-btn:after {
content: '';
position: absolute;
z-index: -1;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.exit-btn {
border: none;
font-family: inherit;
font-size: inherit;
color: inherit;
background: none;
cursor: pointer;
padding: 25px 80px;
display: inline-block;
margin: 15px 30px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
outline: none;
position: relative;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.exit-btn-3 {
background-color: #282F8A;
color: #fff;
border-radius: 7px;
box-shadow: 0 5px #202670;
padding: 25px 60px 25px 90px;
}
.exit-btn-3:before {
position: absolute;
left: 0;
width: 40%;
font-size: 160%;
line-height: 0.8;
color: #fff;
content: "\e163";
font-family: 'Glyphicons Halflings';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment