Skip to content

Instantly share code, notes, and snippets.

@liuxiaomingskm
Created January 22, 2020 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liuxiaomingskm/4d22158b53570293c69fffafc3070f40 to your computer and use it in GitHub Desktop.
Save liuxiaomingskm/4d22158b53570293c69fffafc3070f40 to your computer and use it in GitHub Desktop.
zYxMgrg
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300,400" >
<h1>This Button Does Nothing</h1>
<button class="btn">Click Me</button>
.btn {
outline:none;
border:none;
cursor:pointer;
display:block;
position:relative;
background-color:#fcad26;
font-size:16px;
font-weight:300px;
color:white;
text-transform:uppercase;
letter-spacing:2px;
padding:25px 80px;
margin: 0 auto;
border-radius:20px;
box-shadow:0 6px #efa424;
}
.btn:hover{
box-shadow:0 4px #efa424;
top: 2px;
}
.btn:active{
box-shadow: none;
top:6px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment