2018-11-05 19:34:35 +00:00
|
|
|
<?php
|
2018-01-28 16:40:49 +00:00
|
|
|
session_start();
|
2018-01-29 19:24:30 +00:00
|
|
|
if (!isset($_SESSION['uid'])) {
|
|
|
|
header('Location: index.php');
|
|
|
|
die();
|
|
|
|
}
|
2018-01-28 16:40:49 +00:00
|
|
|
include('config.php');
|
|
|
|
include('functions.php');
|
|
|
|
|
2018-07-02 13:30:43 +00:00
|
|
|
|
2018-01-28 16:40:49 +00:00
|
|
|
?>
|
2018-07-02 13:51:19 +00:00
|
|
|
<!DOCTYPE html>
|
2018-01-28 16:40:49 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2018-07-02 13:51:19 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<link href="css/main.css" rel="stylesheet"/>
|
|
|
|
<title>Реликты</title>
|
2018-01-29 19:24:30 +00:00
|
|
|
<style>
|
|
|
|
.items {
|
|
|
|
border: 1px solid black;
|
|
|
|
float: left;
|
|
|
|
height: 150px;
|
|
|
|
margin: 0 0 30px 30px;
|
|
|
|
width: 150px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2018-01-28 16:40:49 +00:00
|
|
|
|
2018-01-29 19:24:30 +00:00
|
|
|
.title {
|
|
|
|
font-size: 75%;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2018-01-28 16:40:49 +00:00
|
|
|
|
2018-01-29 19:24:30 +00:00
|
|
|
.img {
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.control {
|
|
|
|
padding: 0 3px;
|
|
|
|
font-size: 90%;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.slot.valign {
|
|
|
|
margin-top: -12px;
|
|
|
|
margin-left: 54px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
height: 25px;
|
|
|
|
width: 40px;
|
|
|
|
}
|
|
|
|
</style>
|
2018-01-28 16:40:49 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-01-29 19:24:30 +00:00
|
|
|
|
2018-01-28 16:40:49 +00:00
|
|
|
</body>
|
|
|
|
</html>
|