-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader1.php
115 lines (98 loc) · 1.86 KB
/
header1.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
<html>
<head>
</head>
<style>
*{
margin:0;
padding:0;
list-style:none;
text-decoration: none;
}
.inner_header{
width:90%;
height:100%;
display:block;
margin:0 auto;
}
.logo_container{
height:auto;
}
.logo_container img{
height:90px;
position: absolute;
left: 48%;
}
.nav{
float: right;
height:100%;
font-size: 25px;
margin-top: 30px;
}
.nav a{
height:90px;
display:table;
float:left;
padding:25px 20px;
}
.nav a li{
display: table-cell;
vertical-align: middle;
height: 100%;
color: black;
font-family: sans-serif;
}
.nav a:last-child{
padding-right: 0;
}
.nav a li:hover{
color:orange;
font-weight:bold;
}
.nav1{
float: left;
height:100%;
font-size: 25px;
margin-top: 30px;
margin-left: -50px;
}
.nav1 a{
height:90px;
display:table;
float:left;
padding:25px 20px;
}
.nav1 a li{
display: table-cell;
vertical-align: middle;
height: 100%;
color: black;
font-family: sans-serif;
}
.nav1 a:last-child{
padding-right: 0;
}
.nav1 a li:hover{
color:orange;
font-weight:bold;
}
</style>
<body>
<div class="header">
<div class="inner_header">
<div class="logo_container">
</div>
<ul class="nav">
<a href="cakesales.php"><li>Serves</li></a>
<a href="profit.php"><li>Profit</li></a>
<a href="stafflogin.php"><li>Logout</li></a>
</ul>
<ul class="nav1">
<a href="ownerprofile.php"><li>Profile</li></a>
<a href="customerprofile.php"><li>Customer</li></a>
<a href="home(staffadmin).php"><li>Menu</li></a>
<a href="testing.php"><li>Order History</li></a>
</ul>
</div>
</div>
</body>
</html>