Увеличение/уменьшение
HTML
<script src="<link href="http://fonts.googleapis.com/css?family=Lato:900" rel="stylesheet" type="text/css">"></script>
<body>
<div class="scalemaxmin">DonKiHod</div>
</body>
CSS
.test {
margin: 100px 100px;
width: 280px;
height: 100px;
background: black;
color: lawngreen;
font-family: sans-serif;
font-size: 50px;
text-align: center;
line-height: 100px;
transition: all 0.5s ease;
}
.test:hover {
-webkit-transform: scale(1.5);
-ms-transform: scale(1.5);
transform: scale(1.5);
}