-
Notifications
You must be signed in to change notification settings - Fork 0
/
emptycart.php
129 lines (105 loc) · 2.68 KB
/
emptycart.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php
session_start();
if($_SESSION['CName']==NULL)
{
header("location:index.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico">
<title>Price List</title>
</head>
<body>
<div class=page>
<div class=pic>
<img src="images/empty.png" width=250px height=250px>
</div>
<div class = 'heading'>
You have not bought anything from our store. Go back and shop something to add it in the cart.
</div>
</div>
<!-- <a href='home.php' class="back"> <div id="backbutton"> BACK </div> </a> -->
<a href="shopping.php"><div id=backbutton><img src="images/back.png" width=61.5px height=61.5px></div></a>
<div id=footText>
<span id=copyright>©</span>2019 SANTOSH PANDEY | ALL RIGHTS RESERVED | RGG™
</div>
</body>
</html>
<style>
@font-face { font-family: "XiaoWei";
src: url('fonts/XiaoWei.ttf'); }
@font-face { font-family: "Comfortaa";
src: url('fonts/Comfortaa.ttf'); }
@font-face {font-family: 'creteround';
src:url('fonts/Crete_Round/CreteRound-Regular.ttf');}
@font-face {font-family: 'OldStandard';
src:url('fonts/Old Standard/OldStandardTT-Regular.ttf');}
body {
/* margin:0;
background-image: url("background-images/green-bg.jpg");
background-size: 120vmax;
background-attachment: fixed; */
}
.page{
position:absolute;
width:fit-content;
top:40%;
left:50%;
transform:translate(-50%,-50%);
}
.heading{
font-family:comfortaa;
color:orangered;
width:70vw;
text-align:center;
font-size:60px;
font-weight:800;
}
.pic{
width:250px;
height:250px;
margin:0 auto;
margin-top:1vw;
}
#backbutton{
display:inline;
position:absolute;
margin:35px auto;
cursor: pointer;
left:2vw;
top:0.4vw;
width:60px;
height:60px;
}
#backbutton:active{
transform:translateY(2px);
}
/*This is the footer...which contains information about the author and copywright info*/
#footText {
color:white;
position:fixed;
bottom:0;
left:0;
right:0;
background-image: linear-gradient(to right,rgb(0,0,0,.5),rgb(0,0,0,.2),rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7),rgb( 0, 0,0,0.7),rgb(0,0,0,.2),rgb(0,0,0,.5));
font-family: xiaowei;
text-align: center;
font-size: 14px;
letter-spacing: 7px;
padding: 2px;
margin: 0 4px;
margin-bottom: 2px;
margin-top: 1vw;
border-radius: 10px;
text-shadow:0px 0px 50px black;
}
#copyright{
font-size: 18px;
vertical-align: -.75px;
text-shadow:0px 0px 10px black;
}
</style>