-
Notifications
You must be signed in to change notification settings - Fork 0
/
listing-detail.php
90 lines (79 loc) · 2.24 KB
/
listing-detail.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Enteries</title>
<style>
body{
background-image: url('img/smr.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
.content .card{
position: relative;
margin-top: 10vh;
min-height: 40vh;
}
.content .cards {
padding: 20px 15px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
padding-left: 150px;
}
.content .cards .card {
width: 250px;
height: 150px;
backdrop-filter: blur(10px);
margin: 20px 10px;
display: flex;
align-items: center;
justify-content: space-around;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
color: white;
}
.icon-case img {
height: 50px;
width: 50px;
}
</style>
<div class="content">
<div class="cards">
<a href="depview.php">
<div class="card">
<div class="box">
<h3>Department List</h3>
</div>
<div class="icon-case">
<img src="img/reg.png" alt="">
</div>
</div>
<div class="content">
<a href="sessview.php">
<div class="cards">
<div class="card">
<div class="box">
<h3>Session List</h3>
</div>
<div class="icon-case">
<img src="img/class.png" alt="">
</div>
</div>
<div class="content">
<div class="cards">
<a href="secview.php">
<div class="card">
<div class="box">
<h3>Section List</h3>
</div>
<div class="icon-case">
<img src="img/sec.png" alt="">
</div>
</div>
</head>
<body>
</body>
</html>