CSS3 Aqua sphere

Effet aqua glossy sur une sphère

by toubia95

HTML

<a href="#" class="geologia">Bouton</a>

CSS

html {
    padding: 100px;
}

body{
    font-family: Helvetica, Verdana, sans-serif;
}

a {
  text-indent: -90000px;
  display: block;
  width: 200px;
  height: 200px;
background-color:rgba(23, 252, 245, 0.2); 
background-image: -moz-radial-gradient(50% 70%, circle farthest-corner, rgba(23, 252, 245, 1), rgba(0, 0, 0, 1) 50%);
-moz-box-shadow:0px 10px 10px #6E6E6E;
-moz-border-radius: 100px;
position: relative;
}

a:after {
  content:"";
  display: block;
  width: 160px;
  height: 130px;
  position: absolute;
  left: 20px;
  top: 10px;
  -moz-border-radius: 80px / 65px;
background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);  
}