mirror of
https://gitlab.com/nekoya/web.git
synced 2024-11-14 02:16:19 +01:00
Update bag header
This commit is contained in:
parent
0ecceed189
commit
378fb1468b
1 changed files with 2 additions and 119 deletions
|
@ -1,127 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Shopping 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.webp" rel="shortcut icon" type="image/png" />
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com" rel="preconnect">
|
||||
<link crossorigin href="https://fonts.gstatic.com" rel="preconnect">
|
||||
<script src="https://unpkg.com/feather-icons"></script>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
* {
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
.box {
|
||||
width: 100px;
|
||||
text-align: center;
|
||||
background-color: white;
|
||||
color: black;
|
||||
}
|
||||
<%- include('../layouts/header.ejs', {title: 'Shopping Bag', state: 'bag'}); %>
|
||||
|
||||
@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;
|
||||
}
|
||||
|
||||
.bg-color {
|
||||
background-color: #1b1c1e;
|
||||
}
|
||||
|
||||
.comp-color {
|
||||
background-color: #212226;
|
||||
}
|
||||
|
||||
.nav-radius {
|
||||
border-bottom-left-radius: 20px;
|
||||
border-bottom-right-radius: 20px;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
}
|
||||
|
||||
:focus {
|
||||
outline: 0 !important;
|
||||
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
|
||||
}
|
||||
</style>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/lazysizes/5.3.2/lazysizes.min.js"></script>
|
||||
</head>
|
||||
<body style="background-color: #1b1c1e;;">
|
||||
<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" data-target="#navbarTogglerDemo01" data-toggle="collapse" type="button">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
|
||||
<ul class="navbar-nav mx-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<li class="nav-item active">
|
||||
<a aria-disabled="true" class="nav-link disabled" href="product-list.html">Products</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="about-us.html">About Us</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="faq.html">FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="navbar-nav my-2 my-lg-0 text-white">
|
||||
<div class="my-4">
|
||||
<a href="login.html"><button class="btn btn-outline-success mt-auto mb-auto mr-3"
|
||||
type="button">Login</button></a>
|
||||
</div>
|
||||
<a href="bag.html" class="mt-auto mb-auto" style="color: inherit;"><i class="fas fa-shopping-cart"><span
|
||||
class="ml-2 mt-auto mb-auto">Rp 999.999</span></i></a>
|
||||
</span>
|
||||
</div>
|
||||
</nav>
|
||||
<%- include('../layouts/navbar.ejs', {types: 'v3', title: 'Shopping Bag'}); %>
|
||||
<br>
|
||||
<div class="bag">
|
||||
<div class="row">
|
||||
|
|
Loading…
Reference in a new issue