.row {
margin-right: -15px;
margin-left: -65px;
width: 900px;
}
.row {
margin-right: -15px;
margin-left: -15px;
}
<form method="post" action="/order">
<input type="hidden" name="memory" value="<?=$_GET['memory']?>"/>
<input type="hidden" name="memory" value="<?=$_GET['color']?>"/>
<input type="submit" value="Submit" />
</form>
.el{
animation: cloud1 1s ease-in-out forwards;
}
@keyframes cloud1 {
0% {
left: 500px;
opacity: 1;
}
99%{
opacity: 1;
}
100% {
left:-200px;
opacity: 0;
}
}
overflow:hidden;
transform:scale(1.2);/*подобрать коэффициент*/
.target:hover,
.target:active{
animation: rotate 0.5s ease-in-out;
}
keyframes rotate{
to{
transform:rotate(360deg);
}
}
<section>
<div class="content"></div>
</section>
section{
width: 100%;
background-color: blue;
}
.content{
margin: 0 auto;
width: 1200px;
}