battles/relikt.php
2019-01-09 22:02:42 +02:00

64 lines
1.2 KiB
PHP

<?php
session_start();
if (!isset($_SESSION['uid'])) {
header('Location: index.php');
die();
}
include('config.php');
include('functions.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="css/main.css" rel="stylesheet"/>
<title>Реликты</title>
<style>
.items {
border: 1px solid black;
float: left;
height: 150px;
margin: 0 0 30px 30px;
width: 150px;
position: relative;
}
.title {
font-size: 75%;
font-weight: bold;
text-align: center;
}
.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>
</head>
<body>
</body>
</html>