Skip to content

Instantly share code, notes, and snippets.

@IsaacGonzalez
Created December 18, 2013 02:23
Show Gist options
  • Save IsaacGonzalez/8016356 to your computer and use it in GitHub Desktop.
Save IsaacGonzalez/8016356 to your computer and use it in GitHub Desktop.
div.cuadroCentro{
-moz-box-shadow: 0px 0px 10px #000000;
-webkit-box-shadow: 0px 0px 10px #000000;
box-shadow: 0px 0px 10px #000000;
background-color: white;
margin:0 auto;
display: block;
width: 300px;
position:relative;
width:600px;
height:400px;
z-index:15;
top:50%;
left:50%;
margin:-200px 0 0 -300px;
-webkit-transition: -webkit-transform 1s ease;
-moz-transition: -moz-transform 1s ease;
-ms-transition: -ms-transform 1s ease;
-o-transition: -o-transform 1s ease;
transition: transform 1s ease;
/* Esta medio raro que hagas esto aquí pero bueno... */
transform: scale(0.644);
-webkit-transform: scale(0.644);
-moz-transform: scale(0.644);
/* Aqui le pones lo demas prefijos, ya me dio hueva */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment