-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschedule.html
146 lines (131 loc) · 2.68 KB
/
schedule.html
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<title>Schedule</title>
<!--Header styles-->
<style type="text/css">
html{
height: 100%;
}
body{
margin:0px 0px;
padding: 0px 0px;
min-height: 100% ;
background-attachment: scroll;
background-repeat:repeat;
background: -moz-linear-gradient(top, rgb(70,70,70),rgb(170,170,170)n);
background: -webkit-linear-gradient(top, rgb(95,95,95),rgb(145,145,145),rgb(95,95,95));
}
a{
text-decoration: none;
color: black;
}
a:hover{
cursor: pointer;
}
#header{
margin: 0px;
font-size: 0.6em;
text-align: center;
font-weight: bold ;
font-family: "calibri";
background: -moz-linear-gradient(right, rgb(100,100,100), rgb(150,150,150));
background: -webkit-linear-gradient(right, rgb(100,100,100), rgb(150,150,150));
background-size: 100% 1000px;
position: relative fixed;
width: 100%;
min-width: 100px;
z-index: 5;
}
ul{
margin: 0px;
padding: 0px;
list-style: none;
display: flex;
}
h1{
margin: 0px 15px;
padding: 3px;
}
#push{
margin-left: auto;
}
#logo{
width: 90px;
height: 30px;
padding: 0px;
margin: 0px;
vertical-align: middle;
}
#home{
color:darkblue;
}
@media only screen and (max-width: 750px){
h1{
font-size: 1.5em;
margin: 0px 5px;
}
#logo{
width: 75px;
height: 25px;
padding: 0px;
margin: 0px;
vertical-align: middle;
}
}
@media only screen and (max-width: 510px){
h1{
font-size: 1.4em;
margin: 0px 3px;
}
#logo{
width: 69px;
height: 23px;
padding: 0px;
margin: 0px;
vertical-align: middle;
}
}
li{
border-radius: 2.5px;
}
li:hover{
background-color: white;
box-shadow: 1px 1px 1px 1px #333333;
}
li:first-child:hover{
background-color: initial;
box-shadow:initial;
filter: saturate(300%);
}
</style>
<style type="text/css">
table{
margin-top: 20px;
padding: 5px;
width: 100%;
}
</style>
</head>
<body>
<div id="header">
<ul>
<li><a href="./index.html"><img id="logo" src="./titlepng.png"></a></li>
<li><a href="./index.html"><h1 id="home">Home</h1></a></li>
<li><a href="./index.html#About"><h1>About</h1></a></li>
<!--<li><a href="./schedule.html"><h1>Schedule</h1></a></li> -->
<li style="margin-left: auto;"><a href="./adminlogin.html"><h1>Go back</h1></a></li>
<li><a href="./index.html#querie"><h1>Ask Queries</h1></a></li>
<li><a href="./index.html#contacts"><h1>Contact us</h1></a></li>
</ul>
</div>
<div>
<table border="1">
<tr>
<td>Date</td><td>Match</td><td>Venue</td><td>Time</td><td>Available Seats</td><td>Book</td>
</tr>
</table>
</div>
</body>
</html>