-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdivisiondetails.html
122 lines (98 loc) · 3.47 KB
/
divisiondetails.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Division Details</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="text/html; charset=iso-8859-2" http-equiv="Content-Type">
<script src="https://kit.fontawesome.com/b99e675b6e.js"></script>
<style>@import url('https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
font-family: 'Josefin Sans', sans-serif;
}
body{
background-color: #f3f5f9;
}
.wrapper{
display: flex;
position: relative;
}
.wrapper .sidebar{
width: 270px;
height: 100%;
background: #070222;
padding: 2px 0px;
position: fixed;
}
.wrapper .sidebar h2{
color: #fff;
text-transform: uppercase;
text-align: center;
margin-bottom: 20px;
}
.wrapper .sidebar ul li{
padding: 15px;
border-bottom: 4px solid #cecae0;
border-bottom: 4px solid rgba(224, 218, 218, 0.05);
border-top: 4px solid rgba(250, 250, 250, 0.05);
}
.wrapper .sidebar ul li a{
color: #ffffff;
display: block;
font-size: 20px;
}
.wrapper .sidebar ul li a .fas{
width: 30px;
font-size: 20px;
}
.wrapper .sidebar ul li:hover{
background-color: #3a3946;
}
.wrapper .sidebar ul li:hover a{
color: #fff;
}
.wrapper .main_content{
width: 100%;
margin-left: 270px;
}
.wrapper .main_content .header{
padding: 20px;
background: rgb(245, 184, 54);
color: #000000;
border-bottom: 1px solid #000000;
height: 60px;
position: centre;
text-align: left;
font-size: 30px;
}
.wrapper .main_content .info{
margin: 10px;
color: #000000;
line-height: 15px;
position: relative;
}
</style>
</head>
<div class="wrapper">
<div class="sidebar">
<img src="Oorja (1)1.png" height="30%" width="90%" style="padding-left: 25px;" position="top"/>
<ul>
<li><a href="dashboard.html"><i class="fas fa-home"></i>Dashboard</a></li>
<li><a href="activecomplaints.html"><i class="fas fa-exclamation-triangle"></i>Active Complaints</a></li>
<li><a href="complainthistory.html"><i class="fas fa-history"></i>Complaint History</a></li>
<li><a href="consumerdata.html"><i class="fas fa-address-card"></i>Consumer Data</a></li>
<li><a href="divisiondetails.html"><i class="fas fa-users"></i>Division Details</a></li>
<li><a href="contact.html"><i class="fas fa-address-book"></i>Contact</a></li>
</ul>
</div>
<div class="main_content">
<div class="header"><b>Division Office</b></div>
<div class="info">
</div>
</body>
</html>