Skip to content

Instantly share code, notes, and snippets.

@bytefade
Created September 25, 2014 16:47
Show Gist options
  • Save bytefade/3142efbff86f7b69991b to your computer and use it in GitHub Desktop.
Save bytefade/3142efbff86f7b69991b to your computer and use it in GitHub Desktop.
Shadow google
#docs-homescreen-add {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
border: none;
bottom: 24px;
-webkit-box-shadow: 0px 2px 10px rgba(0,0,0,.3),0px 0px 1px rgba(0,0,0,.1),inset 0px 1px 0px rgba(255,255,255,.25),inset 0px -1px 0px rgba(0,0,0,.15);
-moz-box-shadow: 0px 2px 10px rgba(0,0,0,.3),0px 0px 1px rgba(0,0,0,.1),inset 0px 1px 0px rgba(255,255,255,.25),inset 0px -1px 0px rgba(0,0,0,.15);
box-shadow: 0px 2px 10px rgba(0,0,0,.3),0px 0px 1px rgba(0,0,0,.1),inset 0px 1px 0px rgba(255,255,255,.25),inset 0px -1px 0px rgba(0,0,0,.15);
cursor: pointer;
height: 56px;
position: fixed;
-webkit-transition-duration: 0.25s;
transition-duration: 0.25s;
-webkit-transition-property: background-color,-webkit-box-shadow;
transition-property: background-color,box-shadow;
right: 24px;
width: 56px;
z-index: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment