You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="utf-8"> |
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
|
|
<title>Login Form</title> |
|
|
<link rel="stylesheet" href="css/style.css"> |
|
|
<link rel="shortcut icon" type="image/png" href="https://avatars1.githubusercontent.com/u/17867603?v=3&s=200"/> |
|
|
<script src="js/jquery-3.0.0.min.js"></script> |
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> |
|
|
<script type="text/javascript" src="js/materialize.min.js"></script> |
|
|
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/> |
|
|
<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]--> |
|
|
<style> |
|
|
ul { |
|
|
list-style-type: none; |
|
|
margin: 0; |
|
|
padding: 0; |
|
|
overflow: hidden; |
|
|
background-color: #333; |
|
|
} |
|
|
|
|
|
li { |
|
|
float: left; |
|
|
} |
|
|
|
|
|
li a { |
|
|
display: block; |
|
|
color: white; |
|
|
text-align: center; |
|
|
padding: 14px 16px; |
|
|
text-decoration: none; |
|
|
} |
|
|
|
|
|
li a:hover:not(.active) { |
|
|
background-color: #111; |
|
|
} |
|
|
|
|
|
img { |
|
|
border-radius: 8px; |
|
|
width: 600px; |
|
|
height: 600px; |
|
|
} |
|
|
.active { |
|
|
background-color: #4CAF50; |
|
|
} |
|
|
.titleIn{ |
|
|
position: fixed; |
|
|
/*margin-top: -20px;*/ |
|
|
width: 100%; |
|
|
display:flex; |
|
|
justify-content: center; |
|
|
align-items:center; |
|
|
color:#FFF; |
|
|
font-size:30px; |
|
|
} |
|
|
.container{ |
|
|
margin-right: auto; |
|
|
margin-left: auto; |
|
|
} |
|
|
.boxShow{ |
|
|
display:flex; |
|
|
justify-content: center; |
|
|
align-items:center; |
|
|
/*margin-top: 10px;*/ |
|
|
} |
|
|
.cardData{ |
|
|
display:flex; |
|
|
justify-content: center; |
|
|
align-items:center; |
|
|
margin-top: 10px; |
|
|
margin: 10px; |
|
|
background-color: #FFF; |
|
|
width: 150px; |
|
|
height: 150px; |
|
|
border: 1px solid navy; |
|
|
|
|
|
} |
|
|
.flexCenter { |
|
|
display:flex; |
|
|
justify-content: center; |
|
|
align-items:center; |
|
|
} |
|
|
.flexCenterSpace { |
|
|
display:flex; |
|
|
justify-content: space-around; |
|
|
-webkit-justify-content: space-around; |
|
|
align-items:center; |
|
|
|
|
|
} |
|
|
.cardStyle{ |
|
|
width: 800px; |
|
|
/*height: 150px;*/ |
|
|
margin-top: 5px; |
|
|
background-color: #FFF; |
|
|
border: 1px solid navy; |
|
|
} |
|
|
|
|
|
.modalStyle{ |
|
|
width: 800px; |
|
|
/*height: 150px;*/ |
|
|
margin-top: 5px; |
|
|
background-color: #FFF; |
|
|
border: 1px solid navy; |
|
|
} |
|
|
|
|
|
</style> |
|
|
</head> |
|
|
<body> |
|
|
<div> |
|
|
<ul style="height:80px;font-size:18px;" class="titleIn"> |
|
|
<li><h1 style="align-items: flex-end;font-size:36px;">Instrument</h1></li> |
|
|
<li style="align-items: flex-end;"><a class="active" onClick="LogoutPage()">Logout</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
</div> |
|
|
|
|
|
<div id="more" class="container flexCenter" style="max-width:800px"> |
|
|
<div> |
|
|
<img > |
|
|
<div> |
|
|
<h style="font-size:20px">ชื่อครุภัณฑ์วิทยาศาสตร์</h> |
|
|
</div> |
|
|
<div> |
|
|
<h style="font-size:20px">จุดประสงค์การใช้งาน</h> |
|
|
</div> |
|
|
<div> |
|
|
<h style="font-size:20px">เลขครุภัณฑ์</h> |
|
|
</div> |
|
|
<div> |
|
|
<h style="font-size:20px">ผู้ดูแล</h> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
</div> |
|
|
|
|
|
</body> |
|
|
|
|
|
</script> |
|
|
</html>
|
|
|
|