[html]<style>
/* Список персонажей
-----------------------------------------------*/
#occup * {margin: 0;}
#occup {
position: relative;
display: flex;
display: -webkit-flex;
flex-direction: column;
max-width: 900px;
height: auto;
margin: 5px auto;
padding: 10px;
box-sizing: border-box;
background-color: linen;
color: #000;
font: normal 12px/16px sans-serif;
}
#occup span {
text-align: center;
font: bold 14px/16px sans-serif;
text-transform: uppercase;
padding-bottom: 5px;
width: 100%;
display: block;
}
#occup > span {
font: bold 16px/20px sans-serif;
}
#occup a {
text-decoration: none;
font-weight: normal;
}
#occup .inner {
display: flex;
flex-direction: row;
}
#occup .inner .chars-nav {
border: 1px solid currentColor;
margin: 0 5px;
box-sizing: border-box;
padding: 10px;
display: flex;
flex-direction: column;
}
#occup .inner .all-chars {
border: 1px solid currentColor;
margin: 0 5px;
box-sizing: border-box;
padding: 10px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: flex-start;
justify-content: space-between;
}
#occup .chars-nav {
width: 30%;
}
#occup .chars-nav a {
width: fit-content;
cursor: pointer;
}
#occup .chars-nav .current {font-weight: bold;}
#occup .all-chars {
width: 70%;
display: block;
flex-direction: column;
list-style: none;
padding: 0;
}
#occup ul {
list-style: none;
padding: 0;
}
#occup .org {display: none;}
#occup .org p {font: normal 12px/16px sans-serif;}
</style>
<div id="occup">
<span class="actitle">People see God every day, they just don't recognize him.</span>
<div class="inner">
<!--фильтрация объектов по классу, адаптация by Alex Kolmar-->
<script type="text/javascript">
$(function() {
var newSelection = "";
$(".chars-nav a").click(function(){
$(".all-chars").show();
$(".chars-nav a").removeClass("current");
$(this).addClass("current");
newSelection = $(this).attr("rel");
$(".char").not("."+newSelection).slideUp();
$("."+newSelection).slideDown();
});
});
</script>
<div class="chars-nav">
<a rel="all" class="current"># All</a>
<a rel="npc" class="current"># NPC\Добрые руки</a>
<span>// Panteon</span>
<a rel="ABR">#Abrahamic</a>
<a rel="GR">#Greek</a>
<a rel="SL">#Slavic</a>
<a rel="SC">#Scandinavic</a>
<a rel="OTH">#Other</a>
<span>// FC - Gender</span>
<a rel="m">#Male</a>
<a rel="f">#Female</a>
<span>// Rate</span>
<a rel="AAA">#AAA</a>
<a rel="AA">#AA</a>
<a rel="A">#A</a>
<a rel="B">#B</a>
<a rel="C">#C</a>
<a rel="D">#D</a>
<span>// Floor</span>
<a rel="66">#66</a>
<a rel="44">#44</a>
<a rel="30">#30</a>
</div>
<ul class="all-chars">
<li class="npc char org"><span>NPC \ Добрые руки</span>
<div class="orgdescr">
<p>Акция "добрые руки" описана вот здесь. На данной страничке надо знать, что все, что NPC внешность не держит, а то, что добрые руки - идет в комплекте с ролью, но можно и обсуждать</p>
</div>
</li>
<li class="ABR all char m 66 AAA"><a href="">Lucifer</a> [G-Eazy] #666a </li>
<li class="ABR all char m 66 AAA"><a href="">Gabriel</a> [Timothee Shalamet] #613 </li>
<li class="SC all char f 30 B"><a href="">Sculd</a> [Deva Cassel] #303a</li>
<li class="GR all char m 44 A"><a href="">Hermes</a> [Gauge Burek] #447</li>
</ul>
</div>
</div>[/html]