mirror of
https://gitlab.com/nekoya/web.git
synced 2024-12-23 15:00:41 +01:00
commit
This commit is contained in:
parent
eee523b4bd
commit
192c8b8b67
1 changed files with 167 additions and 192 deletions
61
bag.html
61
bag.html
|
@ -4,7 +4,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta content="IE=edge" http-equiv="X-UA-Compatible">
|
||||
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
||||
<title>Bag</title>
|
||||
<title>bag</title>
|
||||
<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
|
||||
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" rel="stylesheet">
|
||||
<link href="assets/favicon.png" rel="shortcut icon" type="image/png"/>
|
||||
|
@ -17,7 +17,6 @@
|
|||
*{
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
.bg-color {
|
||||
background-color: #1b1c1e;
|
||||
}
|
||||
|
@ -30,19 +29,16 @@
|
|||
border-bottom-left-radius: 20px;
|
||||
border-bottom-right-radius: 20px;
|
||||
}
|
||||
|
||||
.full-body{
|
||||
margin-left: 48px;
|
||||
display: flex;
|
||||
color: white;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.title{
|
||||
margin-left: 48px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.button {
|
||||
color: white;
|
||||
background-color: green;
|
||||
|
@ -57,20 +53,17 @@
|
|||
.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;
|
||||
}
|
||||
|
||||
.box{
|
||||
width: 100px;
|
||||
}
|
||||
|
@ -79,17 +72,15 @@
|
|||
.summary{
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.des{
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.bag{
|
||||
word-break: break-all;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 320px) {
|
||||
@media(max-width: 320){
|
||||
.box{
|
||||
width: 10px;
|
||||
}
|
||||
|
@ -100,8 +91,7 @@
|
|||
<body class="bg-color">
|
||||
<nav class="navbar navbar-expand-lg navbar-dark comp-color ml-5 mr-5 nav-radius">
|
||||
<a class="navbar-brand" href="#">Shopping Bag</a>
|
||||
<button aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation"
|
||||
class="navbar-toggler"
|
||||
<button aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler"
|
||||
data-target="#navbarTogglerDemo01" data-toggle="collapse" type="button">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
@ -139,8 +129,7 @@
|
|||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-sm-6 col-md-4 col-lg-2">
|
||||
<img alt="placeholder image" class="img-fluid" src="assets/sepatu.png" width="180px"
|
||||
height="180px"/>
|
||||
<img alt="placeholder image" class="img-fluid" src="assets/sepatu.png" width="180px" height="180px"/>
|
||||
</div>
|
||||
<div class="col-sm-6 col-md-8 col-lg-10">
|
||||
<p>Fashione Shoes</p>
|
||||
|
@ -148,17 +137,13 @@
|
|||
<p>Qty</p>
|
||||
<div style="display: flex;">
|
||||
<span class="input-group-btn">
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;"
|
||||
onclick="minus('inputNum')"><i data-feather="minus-square"></i></button>
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;" onclick="minus('inputNum')"><i data-feather="minus-square"></i></button>
|
||||
</span>
|
||||
<input class="box" type="text" disabled="disabled" value="1"
|
||||
class="form-control input-number" id="inputNum1"/>
|
||||
<input class="box" type="text" disabled="disabled" value="1" class="form-control input-number" id="inputNum" />
|
||||
<span class="input-group-btn">
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;"
|
||||
onclick='add("inputNum")'><i data-feather="plus-square"></i></button>
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;" onclick='add("inputNum")'><i data-feather="plus-square"></i></button>
|
||||
</span>
|
||||
</div>
|
||||
<br>
|
||||
</div><br>
|
||||
<p>Rp 1.999.999,00</p>
|
||||
<a href=""><u>REMOVE</u></a>
|
||||
<br><br>
|
||||
|
@ -170,8 +155,7 @@
|
|||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-sm-6 col-md-4 col-lg-2">
|
||||
<img alt="placeholder image" class="img-fluid" src="assets/sepatu.png" width="180px"
|
||||
height="180px"/>
|
||||
<img alt="placeholder image" class="img-fluid" src="assets/sepatu.png" width="180px" height="180px"/>
|
||||
</div>
|
||||
<div class="col-sm-6 col-md-8 col-lg-10">
|
||||
<p>Fashione Shoes</p>
|
||||
|
@ -179,17 +163,13 @@
|
|||
<p>Qty</p>
|
||||
<div style="display: flex;">
|
||||
<span class="input-group-btn">
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;"
|
||||
onclick="minus('inputNum')"><i data-feather="minus-square"></i></button>
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;" onclick="minus('inputNum')"><i data-feather="minus-square"></i></button>
|
||||
</span>
|
||||
<input class="box" type="text" disabled="disabled" value="1"
|
||||
class="form-control input-number" id="inputNum2"/>
|
||||
<input class="box" type="text" disabled="disabled" value="1" class="form-control input-number" id="inputNum" />
|
||||
<span class="input-group-btn">
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;"
|
||||
onclick='add("inputNum")'><i data-feather="plus-square"></i></button>
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;" onclick='add("inputNum")'><i data-feather="plus-square"></i></button>
|
||||
</span>
|
||||
</div>
|
||||
<br>
|
||||
</div><br>
|
||||
<p>Rp 1.999.999,00</p>
|
||||
<a href=""><u>REMOVE</u></a>
|
||||
<br><br>
|
||||
|
@ -201,8 +181,7 @@
|
|||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-sm-6 col-md-4 col-lg-2">
|
||||
<img alt="placeholder image" class="img-fluid" src="assets/sepatu.png" width="180px"
|
||||
height="180px"/>
|
||||
<img alt="placeholder image" class="img-fluid" src="assets/sepatu.png" width="180px" height="180px"/>
|
||||
</div>
|
||||
<div class="col-sm-6 col-md-8 col-lg-10">
|
||||
<p>Fashione Shoes</p>
|
||||
|
@ -210,17 +189,13 @@
|
|||
<p>Qty</p>
|
||||
<div style="display: flex;">
|
||||
<span class="input-group-btn">
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;"
|
||||
onclick="minus('inputNum')"><i data-feather="minus-square"></i></button>
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;" onclick="minus('inputNum')"><i data-feather="minus-square"></i></button>
|
||||
</span>
|
||||
<input class="box" type="text" disabled="disabled" value="1"
|
||||
class="form-control input-number" id="inputNum3"/>
|
||||
<input class="box" type="text" disabled="disabled" value="1" class="form-control input-number" id="inputNum" />
|
||||
<span class="input-group-btn">
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;"
|
||||
onclick='add("inputNum")'><i data-feather="plus-square"></i></button>
|
||||
<button type="button" class="btn btn-default btn-number" style="color: white;" onclick='add("inputNum")'><i data-feather="plus-square"></i></button>
|
||||
</span>
|
||||
</div>
|
||||
<br>
|
||||
</div><br>
|
||||
<p>Rp 1.999.999,00</p>
|
||||
<a href=""><u>REMOVE</u></a>
|
||||
<br><br>
|
||||
|
|
Loading…
Reference in a new issue