mirror of
https://github.com/DerTyp7/shop-ejs-expressjs.git
synced 2025-10-29 12:32:11 +01:00
46 lines
819 B
CSS
46 lines
819 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;
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
h3{
|
|
text-align: center;
|
|
}
|
|
|
|
hr{
|
|
width: 100%;
|
|
border: 0px;
|
|
background-color:rgba(51, 51, 51, 0.337);
|
|
height: 2px;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
} |