-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
113 lines (105 loc) · 3.51 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
<!-- title -->
<title>Dadral Stores</title>
<!-- fav icon -->
<link rel="shortcut icon" href="./images/shop_logo.png" type="image/x-icon">
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/brands.min.css" integrity="sha512-8RxmFOVaKQe/xtg6lbscU9DU0IRhURWEuiI0tXevv+lXbAHfkpamD4VKFQRto9WgfOJDwOZ74c/s9Yesv3VvIQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- external styling -->
<link rel="stylesheet" href="./styles/dist/cart.css">
<link href="./styles/dist/admin_index.css" rel="stylesheet">
</head>
<body>
<section class="main-content">
<!-- page header section starts here -->
<header class="page-header">
<div class="img-wrapper">
<a href="#">
<img src="./images/shop_logo.png" alt="logo">
</a>
</div>
</header> <br/>
<!-- page header section ends here -->
<section class="activity">
<a href="./iamadmin/">
<span class="admin">
<i class="fas fa-user"></i>
<span>ADMIN</span>
</span>
</a>
<a href="./cashier_login/cashier_login.php">
<span class="cashier">
<i class="fas fa-sack-dollar"></i>
<span>CASHIER</span>
</span>
</a>
</section>
<br/><br/><br/>
<footer class="footer">
Dadral Stores <span>©2012 - <?= Date('Y') ?></span>
</footer>
</section>
<noscript>Pls you need to enable javascript in your browser!</noscript>
</body>
<!-- Internal styles -->
<style type="text/css">
*{
transition: none;
}
section.main-content{
overflow: visible !important;
}
section.activity{
position: relative;
margin-top: 18rem;
padding: 0 2rem;
width: 100%;
justify-content: center;
display: flex;
flex-wrap: wrap;
gap: 2rem;
}
span:is(.admin,.cashier){
color: #eaeaea;
}
section.activity a{
background: linear-gradient(50deg, #e76022, #e74022);
height: auto;
position: relative;
padding: 3rem 8rem;
box-shadow: 1px 1px 8px rgb(63, 62, 62);
border-radius: .3rem;
text-align: center;
justify-content: center;
align-items: center;
}
section.activity a:hover{
background: linear-gradient(80deg, #dd5f24, #e64124);
}
section.activity a:hover span:is(.admin,.cashier){
bottom: 6px;
position: relative;
transition: ease-in 9s !important;
}
footer.footer{
padding-top: 12px;
border-top: 1px dashed #eee;
text-align: center;
position: absolute;
top: auto;
transform: translate(55%,26vh);
color: #e74022;
font-size: 14px;
span{
font-size: 12px;
}
}
</style>
</html>