battles/top_menu.php

50 lines
1.4 KiB
PHP
Raw Normal View History

2018-01-28 16:40:49 +00:00
<!DOCTYPE html>
<html>
<HEAD>
<meta charset="utf-8">
<link rel="stylesheet" href="css/main.css">
<style>
* {
margin: 0;
padding: 0;
2018-01-28 16:40:49 +00:00
}
div {
margin: 0 auto;
overflow: auto;
2018-01-28 16:40:49 +00:00
}
ul {
list-style-type: none;
2018-01-28 16:40:49 +00:00
}
li img {
2018-01-28 16:40:49 +00:00
float: right;
2018-03-01 20:37:17 +00:00
margin: 5px;
border: 1px solid #fff;
2018-01-28 16:40:49 +00:00
-webkit-transition: box-shadow 0.5s ease;
-moz-transition: box-shadow 0.5s ease;
-o-transition: box-shadow 0.5s ease;
transition: box-shadow 0.5s ease;
2018-01-28 16:40:49 +00:00
}
li img:hover {
-webkit-box-shadow: 0 0 7px rgba(255,255,255,0.9);
box-shadow: 0 0 7px rgba(255,255,255,0.9);
}
</style>
2018-01-28 16:40:49 +00:00
</HEAD>
<body>
<div>
<ul>
2018-03-01 20:37:17 +00:00
<li><a href="#" target="main"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/user_anketa.php" title="Анкета" target="main"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/blocknote.php" title="Блокнот" target="main"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/friend.php" title="Друзья" target="main"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/main.php?edit=1" title="Инвентарь" target="main"><img src="http://placehold.it/32x32" /></a></li>
</ul>
</div>
2018-01-28 16:40:49 +00:00
</body>
</html>