This commit is contained in:
vickihe
2019-08-28 21:54:29 +08:00
parent dd3946829d
commit 2a8b87b76b
9 changed files with 116 additions and 3 deletions

View File

@@ -7,9 +7,24 @@
<title>首页</title>
<link rel="stylesheet" href="firstPage_style.css">
</head>
<!-- <frameset cols="100,*">
<frame src="frame_contents.html" noresize="noresize">
<frame src="frame_rooms.html" name="showFrame" noresize="noresize">
</frameset> -->
<body>
<div id="logo">
<a href="C:\Users\lenovo\Desktop\OldPeopleHome\web\图标\LOGO.png"></a>
<div class="box1">
<span class="upper">O</span>
<span class="lower">ld</span>
<span class="upper">P</span>
<span class="lower">eople</span>
<span class="upper">H</span>
<span class="lower">ome</span>
</div>
<div class="leftGuide">
<ul>
<li><a href="#" id="rooms" class="guide">房间</a></li><br><br>
<li><a href="#" id="people" class="guide">老人</a></li>
</ul>
</div>
</body>
</html>

View File

@@ -0,0 +1,53 @@
body {
background-color: aliceblue;
margin: 0px;
}
.box1 {
text-align: left;
position: absolute;
top: 30px;
left: 100px;
}
.upper {
color: rgb(255, 115, 0);
font-weight: bolder;
font-family: sans-serif;
font-size: 45px;
letter-spacing: -10px;
}
.lower {
color: rgb(255, 183, 124);
/* font-weight: bold; */
font-family: sans-serif;
font-size: 45px;
letter-spacing: -5px;
}
span {
user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
}
.leftGuide {
position: absolute;
top: 140px;
left: 100px;
/* border-left: 0.5px solid lightgray; */
border-right: 0.5px solid rgba(255, 183, 124, 0.411);
padding-right: 50px;
}
.guide {
text-decoration-line: none;
font-size: 28px;
font-family: youyuan;
font-weight: 900;
color: rgb(255, 183, 124);
}
ul {
list-style: none;
padding: 0;
}
.guide:hover {
color: rgba(211, 211, 211, 0.651);
}

17
web/frame_contents.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div class="leftGuide">
<ul>
<li><a href="frame_rooms.html" id="rooms" class="guide">房间</a></li><br><br>
<li><a href="frame_people.html" id="people" class="guide">老人</a></li>
</ul>
</div>
</body>
</html>

12
web/frame_people.html Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<p>people</p>
</body>
</html>

12
web/frame_rooms.html Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<p>rooms</p>
</body>
</html>

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>oldPeopleHome</title>
<title>管理员登录</title>
<link rel="stylesheet" href="login_style.css">
</head>
<body>

View File

@@ -10,6 +10,10 @@ body {
font-size: 125px;
position: relative;
top: 120px;
user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
/* background-color: yellow; */
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB