58 lines
1.2 KiB
HTML
58 lines
1.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="zh-Hant">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>功能列</title>
|
||
|
<style>
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
.sidebar {
|
||
|
width: 200px;
|
||
|
background-color: white;
|
||
|
border-right: 1px solid #ddd;
|
||
|
padding-top: 20px;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
.sidebar img {
|
||
|
display: block;
|
||
|
margin: 0 auto 20px;
|
||
|
width: 60px;
|
||
|
height: 60px;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
.sidebar ul {
|
||
|
list-style: none;
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
.sidebar ul li {
|
||
|
padding: 12px 20px;
|
||
|
color: #333;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.sidebar ul li:hover, .sidebar ul li.active {
|
||
|
background-color: #e6f0f8;
|
||
|
color: #007bff;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="sidebar">
|
||
|
<img src="https://via.placeholder.com/60" alt="Logo" />
|
||
|
<ul>
|
||
|
<li class="active">首頁</li>
|
||
|
<li>居民開通</li>
|
||
|
<li>出入管理</li>
|
||
|
<li>緊急通報</li>
|
||
|
<li>訊息通知</li>
|
||
|
<li>水電服務</li>
|
||
|
<li>佈告欄</li>
|
||
|
<li>報表匯出</li>
|
||
|
<li>設定</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|