mirror of
https://gitlab.com/nekoya/web.git
synced 2025-03-13 11:18:30 +01:00
Added bag css
This commit is contained in:
parent
2f55437610
commit
b910a3ea62
1 changed files with 55 additions and 0 deletions
55
public/css/bag.css
Normal file
55
public/css/bag.css
Normal file
|
@ -0,0 +1,55 @@
|
|||
* {
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
.box {
|
||||
width: 100px;
|
||||
text-align: center;
|
||||
background-color: white;
|
||||
color: black;
|
||||
}
|
||||
|
||||
@media (max-width: 320px) {
|
||||
.box {
|
||||
width: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-checkout {
|
||||
width: 100%;
|
||||
background-color: darkred;
|
||||
border-color: darkred;
|
||||
border-radius: 100px;
|
||||
}
|
||||
|
||||
.btn-checkout:hover {
|
||||
background-color: red;
|
||||
border-color: red;
|
||||
}
|
||||
|
||||
.container input {
|
||||
justify-content: left;
|
||||
}
|
||||
|
||||
.card {
|
||||
background-color: #212226;
|
||||
color: white;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.bag {
|
||||
color: white;
|
||||
margin-left: 48px;
|
||||
margin-right: 48px;
|
||||
}
|
||||
|
||||
@media (max-width: 980px) {
|
||||
.summary {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.bag {
|
||||
word-break: normal;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue