Файл: theme/header.php
Строк: 42
<!DOCTYPE html>
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" href="/theme/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/theme/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="/theme/style.css">
<meta name='viewport' content='width=device-width, minimum-scale=1, maximum-scale=1'>
<meta name='author' content='Splash'/>
<?php
if($title){
echo "<title>$title</title>";
}else{
echo "<title>L2 Classic</title>";
}
?>
</head><body>
<?php if(!$uid){ ?>
<div class="main">
<?php }?>
<style>
@-webkit-keyframes pulsate {
50% { color: #fff; text-shadow: 0 0 rgba(48,252,99,0.25), 0 0 5px #ffd, 0 0 8px #fff; }
}
@keyframes pulsate {
50% { color: #fff; text-shadow: 0 0 rgba(48,252,99,0.25), 0 0 5px #ffd, 0 0 8px #fff; }
}
#splash {
text-shadow: 0 0 rgba(48,252,99,0.25);
-webkit-animation: pulsate 1.2s linear infinite;
animation: pulsate 1.2s linear infinite;
}
#order {
text-shadow: 0 0 rgba(203,134,6,0.25);
-webkit-animation: pulsate 1.2s linear infinite;
animation: pulsate 1.2s linear infinite;
}
</style>