smart-green-house-server-an.../html/green_house_info.html

76 lines
1.8 KiB
HTML
Raw Normal View History

2023-10-24 15:02:42 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
/* * {
2023-10-24 15:58:00 +08:00
margin: 0;
padding: 0;
} */
iframe {
border: none;
2023-10-24 15:58:00 +08:00
}
2023-10-24 15:02:42 +08:00
2023-10-24 15:58:00 +08:00
html,
body {
width: 100%;
height: 100%;
}
.content {
width: 100%;
height: 100%;
}
#main {
height: 100%;
display: flex;
flex-direction: column;
background-color: lightcyan;
}
#menu {
text-align: center;
width: 100%;
/* border-right: 5px solid lightgray; */
border-width: 10px;
padding: 30px;
}
#menu>a:hover {
/* color: blue; */
color: white;
/* background-color: aquamarine; */
background-color: dimgray;
border-radius: 5px;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
border-top-left-radius: 30px;
border-bottom-left-radius: 30px;
}
2023-10-24 15:02:42 +08:00
</style>
</head>
<body>
<div id="main">
<div id="menu">
<a href="hemp_hum_first_info.html" target="content_frame" class="menu_item">大棚一号</a>
<a href="hemp_hum_second2_info.html" target="content_frame" class="menu_item">大棚二号</a>
</div>
<div id="content" style="width: 100%;">
<iframe name="content_frame" width="100%" height="100%"></iframe>
</div>
2023-10-24 15:58:00 +08:00
</div>
<div class="content">
<iframe name="content_frame1" width="100%" height="100%" scrolling="No" border="none "></iframe>
2023-10-24 15:02:42 +08:00
</div>
</body>
</html>