Files
shop-ejs-expressjs/static/css/order.css
2022-03-29 14:38:40 +02:00

40 lines
805 B
CSS

#order-info{
display: block;
margin-left: auto;
margin-right: auto;
width: 500px;
margin-top: 60px;
margin-bottom: 60px;
}
#order-info p{
height: 30px;
}
.order_form input[type="submit"]{
color: rgb(255, 255, 255);
font-weight: bold;
letter-spacing: 1.5px;
width: 200px;
display:block;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
height: 35px;
border-radius: 5px;
border: 2px solid rgb(0, 99, 156);
background-color: rgb(0, 99, 156);
transition: 0.1s;
transition-timing-function: linear;
outline: none !important;
cursor:pointer;
}
#order-info hr{
width: 100%;
border: 0px;
background-color:rgba(51, 51, 51, 0.337);
height: 2px;
margin-top: 20px;
margin-bottom: 20px;
}