Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 46.42 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}" xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB} {NAMESPACE_BBCODE}>
  3. <head>
  4. <link href="https://fonts.googleapis.com/css?family=Saira+Semi+Condensed" rel="stylesheet">
  5. <link href="https://fonts.googleapis.com/css?family=Play" rel="stylesheet">
  6. <link href="https://fonts.googleapis.com/css?family=Work+Sans" rel="stylesheet">
  7. <link href="https://fonts.googleapis.com/css?family=Dancing+Script|Dosis|Lobster|Roboto+Slab|Sedgwick+Ave+Display|Source+Code+Pro" rel="stylesheet">
  8. <link href="https://fonts.googleapis.com/css?family=Dancing+Script|Dosis|Lobster|Roboto+Slab|Sedgwick+Ave+Display" rel="stylesheet">
  9. <link href="https://fonts.googleapis.com/css?family=Dosis|Lobster|Roboto+Slab|Sedgwick+Ave+Display" rel="stylesheet">
  10. <link href="https://fonts.googleapis.com/css?family=Dosis|Lobster|Roboto+Slab" rel="stylesheet">
  11. <link href="https://fonts.googleapis.com/css?family=Dosis|Roboto+Slab" rel="stylesheet">
  12. <link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
  13. <link href="https://fonts.googleapis.com/css?family=Exo+2:400,400i,500,500i,600,600i,700" rel="stylesheet">
  14. <link rel="stylesheet" type="text/css" href="https://deywes.github.io/assets/css/main.css">
  15. <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
  16. <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
  17. <meta http-equiv="content-script-type" content="text/javascript" />
  18. <meta http-equiv="content-style-type" content="text/css" />
  19. <!-- BEGIN switch_compat_meta -->
  20. <meta http-equiv="X-UA-Compatible" content="IE={switch_compat_meta.VERSION}" />
  21. <!-- END switch_compat_meta -->
  22. <!-- BEGIN switch_canonical_url -->
  23. <link rel="canonical" href="{switch_canonical_url.CANONICAL_URL}" />
  24. <!-- END switch_canonical_url -->
  25. {META_FAVICO}
  26. {META}
  27. {META_FB_LIKE}
  28. <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
  29. <link href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet" />
  30. {T_HEAD_STYLESHEET}
  31. {CSS}
  32. <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
  33. <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
  34. <script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
  35. <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>
  36.  
  37. <!-- BEGIN switch_fb_login -->
  38. <script src="https://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
  39. <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
  40. <!-- END switch_fb_login -->
  41.  
  42. <!-- BEGIN switch_ticker -->
  43. <link type="text/css" rel="stylesheet" href="{JS_DIR}jquery/ticker/ticker.css" />
  44. <script src="{JS_DIR}jquery/ticker/ticker.js" type="text/javascript"></script>
  45. <!-- END switch_ticker -->
  46. <!-- BEGIN switch_ticker_new -->
  47. <script src="{JS_DIR}jquery/jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
  48. <script type="text/javascript">//<![CDATA[
  49. /* Definir le sens de direction en fonction du panneau admin */
  50. var tickerDirParam = "{switch_ticker.DIRECTION}";
  51. var slid_vert = false;
  52. var auto_dir = 'next';
  53. var h_perso = parseInt({switch_ticker.HEIGHT});
  54.  
  55. switch( tickerDirParam )
  56. {
  57. case 'top' :
  58. slid_vert = true;
  59. break;
  60.  
  61. case 'left':
  62. break;
  63.  
  64. case 'bottom':
  65. slid_vert = true;
  66. auto_dir = 'prev';
  67. break;
  68.  
  69. case 'right':
  70. auto_dir = 'prev';
  71. break;
  72.  
  73. default:
  74. slid_vert = true;
  75. }
  76.  
  77. $(document).ready(function() {
  78.  
  79. var width_max = $('ul#fa_ticker_content').width();
  80. var width_item = Math.floor(width_max / {switch_ticker.SIZE});
  81.  
  82. if (width_max > 0)
  83. {
  84. $('#fa_ticker_content').css('display','block');
  85.  
  86. $('ul#fa_ticker_content li').css('float','left').css('list-style','none').width(width_item).find('img').each(function () {
  87. if ($(this).width() > width_item)
  88. {
  89. var ratio = $(this).width() / width_item;
  90. var new_height = Math.round($(this).height() / ratio);
  91. $(this).height(new_height).width(width_item);
  92. }
  93. });
  94.  
  95. if (slid_vert)
  96. {
  97. var height_max = h_perso;
  98.  
  99. $('ul#fa_ticker_content li').each( function () {
  100. if ($(this).height() > height_max)
  101. {
  102. height_max = $(this).height();
  103. }
  104. } );
  105.  
  106. $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
  107. $('ul#fa_ticker_content li').height(height_max);
  108. }
  109.  
  110. $('#fa_ticker_content').jcarousel({
  111. vertical: slid_vert,
  112. wrap: 'circular',
  113. auto: {switch_ticker.STOP_TIME},
  114. auto_direction: auto_dir,
  115. scroll: 1,
  116. size: {switch_ticker.SIZE},
  117. height_max: height_max,
  118. animation: {switch_ticker.SPEED}
  119. });
  120. }
  121. else
  122. {
  123. $('ul#fa_ticker_content li:not(:first)').css('display','none');
  124. $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
  125. }
  126. });
  127. //]]>
  128. </script>
  129. <!-- END switch_ticker_new -->
  130.  
  131. <script type="text/javascript">
  132. //<![CDATA[
  133. $(document).ready(function(){
  134. <!-- BEGIN switch_enable_pm_popup -->
  135. pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
  136. if(pm != null) { pm.focus(); }
  137. <!-- END switch_enable_pm_popup -->
  138. <!-- BEGIN switch_report_popup -->
  139. report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT={switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
  140. if(report != null) { report.focus(); }
  141. <!-- END switch_report_popup -->
  142. <!-- BEGIN switch_ticker -->
  143. ticker_start({switch_ticker.HEIGHT}, {switch_ticker.SPACING}, {switch_ticker.SPEED}, '{switch_ticker.DIRECTION}', {switch_ticker.STOP_TIME});
  144. <!-- END switch_ticker -->
  145. });
  146.  
  147. <!-- BEGIN switch_login_popup -->
  148. var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = false, logInBackgroundClass = false;
  149. <!-- END switch_login_popup -->
  150.  
  151. <!-- BEGIN switch_login_popup -->
  152. $(document).ready( function() {
  153. $(window).resize(function() {
  154. var windowWidth = document.documentElement.clientWidth;
  155. var popupWidth = $("#login_popup").width();
  156. var mypopup = $("#login_popup");
  157.  
  158. $("#login_popup").css({
  159. "left": windowWidth/2 - popupWidth/2
  160. });
  161. });
  162. });
  163. <!-- END switch_login_popup -->
  164. //]]>
  165. </script>
  166. {GREETING_POPUP}
  167. <!-- BEGIN switch_ticker_new -->
  168. <style>
  169. .jcarousel-skin-tango .jcarousel-item {
  170. text-align:center;
  171. width: 10px;
  172. }
  173.  
  174. .jcarousel-skin-tango .jcarousel-item-horizontal {
  175. margin-right: {switch_ticker.SPACING}px;
  176. }
  177.  
  178. .jcarousel-skin-tango .jcarousel-item-vertical {
  179. margin-bottom: {switch_ticker.SPACING}px;
  180. }
  181. </style>
  182. <!-- END switch_ticker_new -->
  183. {HOSTING_JS}
  184. <!-- BEGIN google_analytics_code -->
  185. <script type="text/javascript">
  186. //<![CDATA[
  187. var _gaq = _gaq || [];
  188. _gaq.push(["_setAccount", "{G_ANALYTICS_ID}"]);
  189. _gaq.push(["_trackPageview"]);
  190. _gaq.push(['_trackPageLoadTime']);
  191.  
  192. <!-- BEGIN google_analytics_code_bis -->
  193. _gaq.push(['b._setAccount', '{G_ANALYTICS_ID_BIS}']);
  194. _gaq.push(['b._trackPageview']);
  195. <!-- END google_analytics_code_bis -->
  196.  
  197. (function() {
  198. var ga = document.createElement("script"); ga.type = "text/javascript"; ga.async = true;
  199. ga.src = ("https:" == document.location.protocol ? "https://ssl" : "http://www") + ".google-analytics.com/ga.js";
  200. var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(ga, s);
  201. })();
  202. //]]>
  203. </script>
  204. <!-- END google_analytics_code -->
  205. <script>
  206. $(document).ready(function() {
  207. var btn_collapse = $('<div></div>', {
  208. class: 'btn-collapse'
  209. });
  210. var btn_collapse_show = $('<i></i>', {
  211. class: 'ion-android-add-circle hidden',
  212. 'data-tooltip': 'Expandir'
  213. }).appendTo(btn_collapse);
  214. var btn_collapse_hide = $('<i></i>', {
  215. class: 'ion-android-remove-circle',
  216. 'data-tooltip': 'Esconder'
  217. }).appendTo(btn_collapse);
  218. var collapsed = [];
  219. if (readCookie('collapsed') != null && readCookie('collapsed') != '') {
  220. collapsed = readCookie('collapsed').split(',');
  221. }
  222. $(document).on('click', '.btn-collapse', function() {
  223. $(this).children('.ion-android-add-circle').toggleClass('hidden');
  224. $(this).children('.ion-android-remove-circle').toggleClass('hidden');
  225. $(this).parents('.forabg').toggleClass('hidden');
  226. if (readCookie('collapsed') != null && readCookie('collapsed') != '') {
  227. collapsed = readCookie('collapsed').split(',');
  228. }
  229. if (!$(this).parents('.forabg').hasClass('hidden')) {
  230. removeFromArray('' + $(this).parents('.forabg').data('cindex'), collapsed);
  231. createCookie('collapsed', collapsed);
  232. } else {
  233. collapsed.push('' + $(this).parents('.forabg').data('cindex'));
  234. createCookie('collapsed', collapsed);
  235. }
  236. });
  237. $('.forabg').each(function(i) {
  238. $(this).data('cindex', '' + i);
  239. $(btn_collapse).clone().attr('id', 'forabg' + i).appendTo($(this).find('.header'));
  240. if ($.inArray('' + i, collapsed) > -1) {
  241. $(this).toggleClass('hidden');
  242. $('#forabg' + i).children('.ion-android-add-circle').toggleClass('hidden');
  243. $('#forabg' + i).children('.ion-android-remove-circle').toggleClass('hidden');
  244. }
  245. });
  246. });
  247.  
  248. function removeFromArray(item, array) {
  249. var i = array.indexOf(item);
  250. if (i > -1) {
  251. array = array.splice(i, 1);
  252. }
  253. }
  254.  
  255. function createCookie(name, value, days) {
  256. var expires;
  257. if (days) {
  258. var date = new Date();
  259. date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
  260. expires = "; expires=" + date.toGMTString();
  261. } else {
  262. expires = "";
  263. }
  264. document.cookie = encodeURIComponent(name) + "=" + encodeURIComponent(value) + expires + "; path=/";
  265. }
  266.  
  267. function readCookie(name) {
  268. var nameEQ = encodeURIComponent(name) + "=";
  269. var ca = document.cookie.split(';');
  270. for (var i = 0; i < ca.length; i++) {
  271. var c = ca[i];
  272. while (c.charAt(0) === ' ') c = c.substring(1, c.length);
  273. if (c.indexOf(nameEQ) === 0) return decodeURIComponent(c.substring(nameEQ.length, c.length));
  274. }
  275. return null;
  276. }
  277. </script>
  278. <style>
  279. @keyframes branding {
  280.  
  281. from {
  282. background-position: 0 0;
  283. }
  284.  
  285. to {
  286. background-position: 1600px 0;
  287. }
  288. }
  289.  
  290. /* #branding {
  291. animation: branding 40s linear infinite;
  292. }*/
  293. @keyframes logo {
  294. 0% {
  295. -ms-transform: rotate(-3deg);
  296. -webkit-transform: rotate(-3deg);
  297. transform: rotate(-3deg);
  298. }
  299. 25% {
  300. -ms-transform: rotate(3deg);
  301. -webkit-transform: rotate(3deg);
  302. transform: rotate(3deg);
  303. }
  304. 50% {
  305. -ms-transform: rotate(-3deg);
  306. -webkit-transform: rotate(-3deg);
  307. transform: rotate(-3deg);
  308. }
  309. 75% {
  310. -ms-transform: rotate(3deg);
  311. -webkit-transform: rotate(3deg);
  312. transform: rotate(3deg);
  313. }
  314. 100% {
  315. -ms-transform: rotate(-3deg);
  316. -webkit-transform: rotate(-3deg);
  317. transform: rotate(-3deg);
  318. }
  319.  
  320. </style>
  321. <link rel="stylesheet" href="http://static.tumblr.com/yiol0h8/AXWn3atj3/tipsy.css" type="text/css" />
  322. <script type="text/javascript" src="http://static.tumblr.com/yiol0h8/GOsn3atjv/jquery.tipsy.js"></script>
  323.  
  324. <script type='text/javascript'>
  325. $(function() {
  326. $('.tool-tip').tipsy({fade: true, gravity: 's'});
  327. });
  328. </script>
  329. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.2.1/assets/owl.carousel.min.css" />
  330. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.2.1/assets/owl.theme.default.min.css" />
  331. <script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.2.1/owl.carousel.min.js"></script>
  332. </head>
  333.  
  334.  
  335. <body>
  336. <div id="ajax_loading"><img src="http://i.imgur.com/gygr8wi.gif" alt="Loading..."></div>
  337.  
  338. <!-- BEGIN hitskin_preview -->
  339. <div id="hitskin_preview" style="display: block;">
  340. <h1><img src="https://illiweb.com/fa/hitskin/hitskin_logo.png" alt="" /> Hit<em>skin</em>.com</h1>
  341. <div class="content">
  342. <p>
  343. {hitskin_preview.L_THEME_SITE_PREVIEW}
  344. <br />
  345. <span>{hitskin_preview.U_INSTALL_THEME}<a href="https://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
  346. </p>
  347. </div>
  348. </div>
  349. <!-- END hitskin_preview -->
  350.  
  351. <!-- BEGIN switch_login_popup -->
  352. <div id="login_popup" class="module main">
  353. <div id="login_popup_title" class="main-head">
  354. <div class="h3">{SITENAME}</div>
  355. </div>
  356. <div class="main-content">
  357. {LOGIN_POPUP_MSG}
  358. <div id="login_popup_buttons">
  359. <form action="{S_LOGIN_ACTION}" method="get">
  360. <input type="submit" class="button2" value="{L_LOGIN}" />
  361. <input type="button" class="button2" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
  362. <input id="login_popup_close" type="button" class="button2" value="{L_DONT_DISPLAY_AGAIN}" />
  363. </form>
  364. </div>
  365. </div>
  366. </div>
  367. <!-- END switch_login_popup -->
  368.  
  369.  
  370.  
  371.  
  372.  
  373. <style id="stylePrimary" type="text/css">body.cpe, .cpe #header, .cpe #secondary_navigation, .cpe #footer, .cpe #primary_extra_menucontent, .cpe #more_apps_menucontent, .cpe .submenu_container{ background-color: #55728b}.cpe #secondary_navigation a, .cpe #secondary_navigation{ color: #55728b} </style>
  374. <style id="styleSecondary" type="text/css">.cpe .topic_buttons li a, .cpe .pagination .pages li.active, .cpe .mini_pagination a, .cpe #vnc_filter_popup_close, .cpe .bar, .cpe .ipsSideBlock h3, .cpe .general_box h3, .cpe .statistics_head, .cpe .maintitle, .cpe ul.post_controls, .cpe ul.post_controls li.multiquote.selected a, .cpe #board_stats .value, .cpe .post_block h3, .input_submit{ background-color: #55728b }a, .cpe .ipsSideBlock h3, .cpe .ipsSideBlock h3 a, .cpe .general_box h3, .cpe .general_box h3 a, .cpe .bar, .cpe .bar a, .cpe .statistics_head, .cpe .statistics_head a, .cpe .poll h3 .desc, .cpe #board_stats .value{ color: #55728b } </style>
  375. <p id="content_jump" class="hide"><a id="top"></a><a href="#j_content" title="Jump to content" accesskey="m">Jump to content</a><a id="top" name="top" accesskey="t"></a></p>
  376.  
  377.  
  378. <style id="stylePrimary" type="text/css">body.cpe, .cpe #header, .cpe #secondary_navigation, .cpe #footer, .cpe #primary_extra_menucontent, .cpe #more_apps_menucontent, .cpe .submenu_container{ background-color: #55728b}.cpe #secondary_navigation a, .cpe #secondary_navigation{ color: #55728b} </style>
  379. <style id="styleSecondary" type="text/css">.cpe .topic_buttons li a, .cpe .pagination .pages li.active, .cpe .mini_pagination a, .cpe #vnc_filter_popup_close, .cpe .bar, .cpe .ipsSideBlock h3, .cpe .general_box h3, .cpe .statistics_head, .cpe .maintitle, .cpe ul.post_controls, .cpe ul.post_controls li.multiquote.selected a, .cpe #board_stats .value, .cpe .post_block h3, .input_submit{ background-color: #55728b }a, .cpe .ipsSideBlock h3, .cpe .ipsSideBlock h3 a, .cpe .general_box h3, .cpe .general_box h3 a, .cpe .bar, .cpe .bar a, .cpe .statistics_head, .cpe .statistics_head a, .cpe .poll h3 .desc, .cpe #board_stats .value{ color: #55728b } </style>
  380. <p id="content_jump" class="hide"><a id="top"></a><a href="#j_content" title="Jump to content" accesskey="m">Jump to content</a><a id="top" name="top" accesskey="t"></a></p>
  381.  
  382.  
  383.  
  384.  
  385.  
  386. <!-- BEGIN switch_user_logged_in -->
  387. <header><div id="branding">
  388. <div class="meio"><a href="/forum" id="logo" class="logo"></a></div></div></header>
  389. <!-- FA.END fa_user_menu --><div class="wrapper3 clearfix">
  390. <div id="logo">
  391. </div>
  392.  
  393. <div class="margin-fix-rezende" id="nav_wrap"><div class="wrapper clearfix"><!--
  394. ::: APPLICATION TABS ::: --><div id="primary_nav" class="clearfix"><ul class="ipsList_inline" id="community_app_menu"><li id="nav_app_ccs" class="left"><a href="/forum"><i class="fa fa-comments"></i> Início</a></li><li id="nav_app_ccs" class="left"><a href="/memberlist" id="grupos"><i class="fa fa-user"></i> Membros</a></li>
  395. <li id="nav_app_ccs" class="left"><a href="#" id="regras"><i class="fa fa-book"></i> Regras</a>
  396. <ul class="second-level-menu">
  397. <li>
  398. <a href=""><i class="fa fa-gavel"></i> Regras do Servidor</a>
  399. <ul class="third-level-menu">
  400. <li><a href="#">Em Andamento</a></li>
  401. <li><a href="#">Em Andamento</a></li>
  402. <li><a href="#">Em Andamento</a></li>
  403. <li><a href="#">Em Andamento</a></li>
  404. </ul>
  405. </li>
  406. <li>
  407. <a href=""><i class="fa fa-comments"></i> Regras do Fórum</a>
  408. <ul class="four-level-menu">
  409. <li><a href="/t83-regras-forum"><i class="fa fa-cogs"></i> Gerais</a></li>
  410. <li><a href="/t2391-regras-denuncias"><i class="fa fa-balance-scale"></i> Denúncias</a></li>
  411. <li><a href="/t2392-regras-revisao-de-punicao"><i class="fa fa-search"></i> Revisão de Punição</a></li>
  412. </ul>
  413. </li>
  414. <li>
  415. <a href="/t3-regras-teamspeak"><i class="fa fa-volume-control-phone"></i> Regras do TS³</a></li>
  416. </ul>
  417. </li>
  418.  
  419.  
  420. <li id="nav_app_ccs" class="left"><a href="#" id="anonymous_element_247"><i class="fa fa-list-alt"></i> ChangeLog</a>
  421. <ul class="second-level-menu">
  422. <li> <a href="/t2203-atualizacoes-servidor"><i class="fa fa-gamepad"></i> Servidor</a></li>
  423. <li> <a href="/t1671-atualizacoes-forum"><i class="fa fa-comments"></i> Fórum</a></li>
  424. </ul>
  425. </li>
  426.  
  427. <li id="nav_app_ccs" class="left"><a href="/h21-"><i class="fa fa-usd"></i> Doar</a></li><li id="nav_app_ccs" class="left"><a href="/h51-emblemas"><i class="fa fa-trophy"></i> Emblemas</a></li></ul></div>
  428. <div id="user_navigation" class="logged_in"><ul class="ipsList_inline">
  429. <li>
  430. <a href="/profile?mode=editprofile&page_profil=avatars" class="cp_avatar">
  431. <script type="text/javascript">document.write(_userdata.avatar);</script>
  432. </a>
  433. </li>
  434. <li>
  435. <script>function myDropMenu() { document.getElementById("myDropDown").classList.toggle("show");document.getElementById("notif_list").classList.remove('show');document.getElementById("drop_link").classList.toggle("select_link");document.getElementById("notify_link").classList.remove('select_link');}</script>
  436. <a id="drop_link" onclick="myDropMenu()" style="cursor: pointer;" > Meu Perfil <i class="fa fa-caret-down"></i> </a><div id="myDropDown" class="dropdown-content">
  437. <div class="left" style="z-index: 10000;">
  438. <ul class="submenu_links" style="z-index: 10000;">
  439. <li class="submenu_li" style="z-index: 10000;">
  440. <a href="/profile?mode=editprofile&page_profil=informations" style="z-index: 10000;">Perfil</a>
  441. </li>
  442. <li style="z-index: 10000;">
  443. <a href="/profile?mode=editprofile&page_profil=avatars" style="z-index: 10000;">Avatar</a>
  444. </li>
  445. <li style="z-index: 10000;">
  446. <a href="/profile?mode=editprofile&page_profil=signature" style="z-index: 10000;">Assinatura</a>
  447. </li>
  448. <li style="z-index: 10000;">
  449. <a href="/profile?mode=editprofile&page_profil=preferences" style="z-index: 10000;">Preferênicas</a>
  450. </li>
  451. </ul>
  452. </div>
  453. </div>
  454. </li><li><a data-clicklaunch="getInboxList" id="inbox_link" href="/privmsg?folder=inbox&amp;tt=1" title="Mensagens"><i class="fa fa-envelope-o" aria-hidden="true"></i></a></li><li><a id="user_link" href="/login?logout=1">Sair</a></li></ul></div></div>
  455. </div>
  456.  
  457.  
  458. </div></div>
  459. </div></div>
  460.  
  461.  
  462. <div class="wrapper2">
  463.  
  464.  
  465.  
  466. <!-- ::: NAVIGATION BREADCRUMBS ::: -->
  467. </div>
  468.  
  469. <!-- END switch_user_logged_in -->
  470.  
  471.  
  472.  
  473.  
  474.  
  475.  
  476.  
  477.  
  478. <!-- BEGIN switch_user_logged_out -->
  479. <!-- FA.BEGIN fa_user_menu -->
  480.  
  481. <header><div id="branding">
  482. <div class="meio"><div class="logo"></div></div></div></header>
  483. <!-- FA.END fa_user_menu -->
  484. <div id="logo">
  485. </div>
  486.  
  487. <div class="margin-fix-rezende" id="nav_wrap"><div class="wrapper clearfix"><!--
  488. ::: APPLICATION TABS ::: --><div id="primary_nav" class="clearfix"><ul class="ipsList_inline" id="community_app_menu"><li id="nav_app_ccs" class="left"><a href="/forum"><i class="fa fa-comments"></i> Início</a></li>
  489.  
  490. <li id="nav_app_ccs" class="left"><a href="#" id="regras"><i class="fa fa-book"></i> Regras</a>
  491. <ul class="second-level-menu">
  492. <li>
  493. <a href=""><i class="fa fa-gavel"></i> Regras do Servidor</a>
  494. <ul class="third-level-menu">
  495. <li><a href="#">Em Andamento</a></li>
  496. <li><a href="#">Em Andamento</a></li>
  497. <li><a href="#">Em Andamento</a></li>
  498. <li><a href="#">Em Andamento</a></li>
  499. </ul>
  500. </li>
  501. <li>
  502. <a href=""><i class="fa fa-comments"></i> Regras do Fórum</a>
  503. <ul class="four-level-menu">
  504. <li><a href="/t83-regras-forum"><i class="fa fa-cogs"></i> Gerais</a></li>
  505. <li><a href="/t2391-regras-denuncias"><i class="fa fa-balance-scale"></i> Denúncias</a></li>
  506. <li><a href="/t2392-regras-revisao-de-punicao"><i class="fa fa-search"></i> Revisão de Punição</a></li>
  507. </ul>
  508. </li>
  509. <li>
  510. <a href="/t3-regras-teamspeak"><i class="fa fa-volume-control-phone"></i> Regras do TS³</a></li>
  511. </ul>
  512. </li>
  513.  
  514.  
  515. <li id="nav_app_ccs" class="left"><a href="" id="anonymous_element_247"><i class="fa fa-list-alt"></i> ChangeLog</a>
  516. <ul class="second-level-menu">
  517. <li> <a href="/t2203-atualizacoes-servidor"><i class="fa fa-gamepad"></i> Servidor</a></li>
  518. <li> <a href="/t1671-atualizacoes-forum"><i class="fa fa-comments"></i> Fórum</a></li>
  519. </ul>
  520. </li>
  521. <li id="nav_app_ccs" class="left"><a href="/h21-"><i class="fa fa-usd"></i> Doações</a></li></ul></div>
  522. <div id="user_navigation" class="not_logged_in">
  523. <ul class="ipsList_inline right">
  524. <li class="registro"><a id="user_link" href="/register">Registre-se</a></li>
  525. <li class="login"><a id="user_link" href="/login">Login <i class="fa fa-caret-down"></i></a></li>
  526. </ul>
  527.  
  528. </div>
  529.  
  530. <script type="text/javascript">
  531. new ipb.Menu($('primary_extra'),$('primary_extra_menucontent'));
  532. </script>
  533.  
  534.  
  535. </div></div>
  536. </div></div>
  537.  
  538. <div class="wrapper2">
  539.  
  540. </div>
  541.  
  542.  
  543. <!-- ::: NAVIGATION BREADCRUMBS ::: -->
  544. <div id="secondary_navigation" class="clearfix">
  545.  
  546.  
  547.  
  548. <ul id="secondary_links" class="ipsList_inline right">
  549.  
  550.  
  551. </ul>
  552. </div>
  553.  
  554.  
  555.  
  556.  
  557.  
  558. <!-- END switch_user_logged_out -->
  559. <a id="top" name="top" accesskey="t"></a>
  560.  
  561. <div class="minwidth_IE">
  562. <div class="layout_IE">
  563. <div class="container_IE">
  564. <div class="pun">
  565. <div id="pun-intro" class="clearfix">
  566. <a href="{U_INDEX}" id="pun-logo"><img src="" alt="{L_INDEX}" /></a>
  567.  
  568. <!-- BEGIN switch_h1 -->
  569. <div id="pun-title">{switch_h1.MAIN_SITENAME}</div>
  570. <!-- END switch_h1 -->
  571.  
  572. <!-- BEGIN switch_desc -->
  573. <p id="pun-desc">{switch_desc.SITE_DESCRIPTION}</p>
  574. <!-- END switch_desc -->
  575. </div>
  576. <div id="pun-head">
  577. <div id="pun-navlinks">
  578. <ul class="clearfix">
  579. <li>{GENERATED_NAV_BAR}</li>
  580. </ul>
  581. </div>
  582. </div>
  583. <div class="wrapper-head">
  584. <div id="panel-top">
  585. <p style="text-align: center; color: #f1f1f1;"> Bem-vindo(a) ao Fórum Ultimate Life Roleplay.</p>
  586. <form class="fa-search1" action="/search">
  587. <div class="fa-search1-select">
  588. <a href="#" class="fa-search1-selected">Tudo</a>
  589. <ul class="fa-search1-dropdown"></ul>
  590. </div>
  591. <div class="fa-search1-input">
  592. <input type="text" name="search_keywords" placeholder="O que procura?" />
  593. <input type="hidden" name="search_where" />
  594. <button type="submit"><i class="ion-search"></i></button>
  595. </div>
  596. </form>
  597.  
  598. </div>
  599. </div>
  600. <!-- BEGIN switch_ticker_new -->
  601. <div id="fa_ticker_block" style="padding-top:4px;">
  602. <div class="module main">
  603. <div class="main-content clearfix">
  604. <div id="fa_ticker_container">
  605. <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display: none;width: 100%;">
  606. <!-- BEGIN ticker_row -->
  607. <li>{switch_ticker.ticker_row.ELEMENT}</li>
  608. <!-- END ticker_row -->
  609. </ul>
  610. </div>
  611. </div>
  612. </div>
  613. </div>
  614. <!-- END switch_ticker_new -->
  615.  
  616. <!-- BEGIN switch_ticker -->
  617. <div id="fa_ticker_block" style="padding-top:4px;">
  618. <div class="module main">
  619. <div class="main-content clearfix">
  620. <div id="fa_ticker_container">
  621. <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
  622. <div class="fa_ticker_content">
  623. <!-- BEGIN ticker_row -->
  624. <div>{switch_ticker.ticker_row.ELEMENT}</div>
  625. <!-- END ticker_row -->
  626. </div>
  627. </div>
  628. </div>
  629. </div>
  630. </div>
  631. </div>
  632. <!-- END switch_ticker -->
  633.  
  634. <div id="page-body">
  635. <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
  636. <div id="outer-wrapper">
  637. <div id="wrapper">
  638. <div id="container">
  639. <div id="content">
  640. <div id="{ID_LEFT}">
  641. <!-- BEGIN giefmod_index1 -->
  642. {giefmod_index1.MODVAR}
  643. <!-- BEGIN saut -->
  644. <div style="height:{SPACE_ROW}px"></div>
  645. <!-- END saut -->
  646. <!-- END giefmod_index1 -->
  647. </div>
  648. <div id="main">
  649. <div id="main-content">
  650.  
  651. <!-- BEGIN html_validation -->
  652. </div>
  653. </div>
  654. </div>
  655. </div>
  656. </div>
  657. </div>
  658. </div>
  659. </div>
  660. </div>
  661. </div>
  662. </div>
  663. </div>
  664. </body>
  665. </html>
  666. <!-- END html_validation -->
  667. <style>.groupsField dd {
  668. position: relative;
  669. display: flex;
  670. align-items: center;
  671. }
  672.  
  673. .groupsField dd input[type="text"],
  674. .groupsField dd input[type="password"] {
  675. width: 100%;
  676. margin-top: -4px;
  677. }</style>
  678.  
  679. <style>
  680. #avatar > center > img {
  681. width: 48px;
  682. height: 48px;
  683. border-radius: 100%;
  684. border: 1px solid #B3B3B3;
  685. margin: -57px 267px;
  686. padding: 2px;
  687. background: white;
  688. }
  689. @charset 'UTF-8';
  690. #cssmenu ul,
  691. #cssmenu li,
  692. #cssmenu span,
  693. #cssmenu a {
  694. border: 0;
  695. margin: 0;
  696. padding: 0;
  697. position: relative;
  698. }
  699. #cssmenu {
  700. color: #878787;
  701. display: block;
  702. height: 37px;
  703. line-height: 37px;
  704. outline: none;
  705. padding: 0 15px;
  706. }
  707. #cssmenu:after,
  708. #cssmenu ul:after {
  709. content: '';
  710. display: block;
  711. clear: both;
  712. }
  713. #cssmenu a {
  714. display: inline-block;
  715. padding: 0 28px;
  716. color: #878787;
  717. font-family: Arial, Verdana, sans-serif;
  718. font-size: 12px;
  719. line-height: 52px;
  720. -webkit-box-shadow: inset rgba(0,0,0,0.05) 0 0 0 1px;
  721. background: #efefef;
  722. box-shadow: inset rgba(0,0,0,0.05) 0 0 0 1px;
  723. color: #878787;
  724. display: block;
  725. height: 37px;
  726. line-height: 37px;
  727. outline: none;
  728. padding: 0 15px;
  729. }
  730.  
  731. #cssmenu ul {
  732. list-style: none;
  733. box-shadow: inset 0 1px 0 whitesmoke;
  734. -moz-box-shadow: inset 0 1px 0 whitesmoke;
  735. -webkit-box-shadow: inset 0 1px 0 whitesmoke;
  736. }
  737. #cssmenu > ul {
  738. float: left;
  739. }
  740. #cssmenu > ul > li {
  741. float: left;
  742. }
  743.  
  744. #cssmenu > ul > li.active a,
  745. #cssmenu > ul > li:hover > a {
  746. background-color: #51aada;
  747. }
  748. #cssmenu .has-sub {
  749. z-index: 1;
  750. }
  751. #cssmenu .has-sub:hover > ul {
  752. display: block;
  753. }
  754. #cssmenu .has-sub ul {
  755. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  756. -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  757. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  758. display: none;
  759. position: absolute;
  760. width: 200px;
  761. top: 100%;
  762. left: 0;
  763. }
  764. #cssmenu .has-sub ul li a {
  765. background: #51aada;
  766. border-bottom: 1px solid #51aada;
  767. box-shadow: inset 0 1px 0 #51aada;
  768. -moz-box-shadow: inset 0 1px 0 #51aada;
  769. -webkit-box-shadow: inset 0 1px 0 #51aada;
  770. color: white;
  771. display: block;
  772. line-height: 326%;
  773. }
  774. #cssmenu .has-sub ul li:hover a {
  775. background-color: #0d6ea3;
  776. }
  777. #cssmenu .has-sub .has-sub:hover > ul {
  778. display: block;
  779. }
  780. #cssmenu .has-sub .has-sub ul {
  781. display: none;
  782. position: absolute;
  783. left: 100%;
  784. top: 0;
  785. }
  786. #cssmenu .has-sub .has-sub ul li a {
  787. background: #0d6ea3;
  788. box-shadow: none;
  789. -moz-box-shadow: none;
  790. -webkit-box-shadow: none;
  791. }
  792. #cssmenu .has-sub .has-sub ul li a:hover {
  793. background: #0d6ea3;
  794. box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  795. -moz-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  796. -webkit-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  797. }
  798. #avatar > center > img {float:right!important;}
  799. .dropdown-content {
  800. background: dimgrey;
  801. border-radius: 3px;
  802. margin: -12px;
  803. display: none!important;
  804. margin-left: -7px;
  805. position: absolute;
  806. border: 0;
  807. box-shadow: 0 0 14px rgba(0,0,0,0.3);
  808. font-size: 12px;
  809. min-width: 101px;
  810. text-align: center;
  811. z-index: 10000;
  812. text-shadow: none!important;
  813. }
  814. .dropdown-content a {
  815. border-bottom: 1px solid #858585;
  816. color: #a7a29e;
  817. display: block;
  818. padding: 0px 19px;
  819. }
  820. .show {
  821. display: block!important;
  822. }
  823. #myDropDown > a:nth-child(1) , #myDropDown > a:nth-child(2) , #myDropDown > a:nth-child(3) , #myDropDown > a:nth-child(4) {height:40px;margin-top:-20px;}
  824. #myDropDown > a:nth-child(5) , #myDropDown > a:nth-child(6) , #myDropDown > a:nth-child(7) , #myDropDown > a:nth-child(8) {height:40px;margin-top:-20px;}
  825. #drop_link img {
  826. margin-top: 49px!important;
  827. margin-left:-30px;
  828. position:absolute;
  829. }
  830. ul#userProfile.ipsList_inline.right li a:hover {
  831. color: #fff;
  832. }
  833. ul#userProfile.ipsList_inline.right li a {
  834. color: #a7a29e;
  835. }
  836. #user_navigation a:hover {
  837. color: #000;
  838. }
  839. /*Menu-DropDown*/
  840. #perfil_drop{
  841. background: linear-gradient(#FFF, #EDEDED) repeat scroll 0px 0px transparent;
  842. border: 0px none !important;
  843. border-radius: 0px 0px 6px 6px;
  844. box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.4);
  845. color: #225985;
  846. font-family: helvetica,arial,sans-serif;
  847. font-size: 12px;
  848. font-style: normal;
  849. font-variant: normal;
  850. font-weight: 400;
  851. overflow: hidden;
  852. position: absolute;
  853. right: 9.2%;
  854. text-align: left;
  855. top: 36px;
  856. width: 360px;
  857. z-index: 999;
  858. }
  859. .nav_c{
  860. box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.58)!important;
  861. }
  862.  
  863. .avat img {
  864. background: none repeat scroll 0px 0px #FFF;
  865. border: 1px solid #D5D5D5;
  866. box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  867. height: 50px;
  868. margin: 10px;
  869. padding: 1px;
  870. width: 50px;
  871. }
  872. #perfil_drop li {
  873. float: right;
  874. line-height: 22px;
  875. white-space: nowrap;
  876. width: 38%;
  877. }
  878. #perfil_drop li a {
  879. color: #00569C;
  880. text-decoration: none;
  881. }
  882. .menu_active {
  883. background: #fff;
  884. border-radius: 5px 5px 0 0;
  885. color: #000!important;
  886. }
  887. #ajax_loading {
  888. -moz-border-radius: 0 0 5px 5px;
  889. -moz-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
  890. -webkit-border-bottom-left-radius: 5px;
  891. -webkit-border-bottom-right-radius: 5px;
  892. -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
  893. background: #000;
  894. border-radius: 0 0 5px 5px;
  895. box-shadow: 0 3px 5px rgba(0,0,0,0.2);
  896. color: #fff;
  897. left: 46%;
  898. opacity: .6;
  899. padding: 5px 0 8px;
  900. position: fixed;
  901. text-align: center;
  902. top: 0;
  903. width: 8%;
  904. z-index: 999;
  905. z-index: 999;
  906. transition: all ease 550ms;
  907. }
  908. </style>
  909. <style>
  910. div#fundo, .caixa {display: none;}
  911. div#fundo {
  912. background: #000;
  913. position: fixed;
  914. width: 100%;
  915. top: 0px;
  916. height: 100%;
  917. left: 0px;
  918. z-index: 1;
  919. opacity: 0.7;
  920. cursor: pointer;
  921. }
  922.  
  923. .blourpShek_box {padding: 10px;}
  924.  
  925. .caixa {
  926. height: auto;
  927. left: 25%;
  928. position: fixed;
  929. top: 10%;
  930. width: 50%;
  931. z-index: 2;
  932. }
  933. .groupsField dd {margin-bottom: 3px;}
  934. span.icon {padding: 5px;}
  935.  
  936. .bgWhite {
  937. background: #fff;
  938. width: 50% !important;
  939. }
  940.  
  941. .caixa .groupsField input {
  942. background: transparent;
  943. border: none;
  944. height: 25px;
  945. }
  946.  
  947. .groupsField {
  948. padding: 10px;
  949. }
  950.  
  951. .messagShek {
  952. background: #0076b1;
  953. }
  954. .messagShek h2 {color: #fff !important;border-bottom: 1px solid #fff;}
  955.  
  956. .buttonLink a {color: #fff;font-size: auto !important; border: none !important;}
  957.  
  958. .messagShek p {
  959. color: #fff;
  960. font-size: 15px;
  961. }
  962.  
  963. .buttonLink {
  964. color: #fff !important;
  965. background: #12a3eb;
  966. cursor: pointer;
  967. padding: 10px;
  968. border-radius: 5px;
  969. }
  970.  
  971. .buttonLink:hover {
  972. background: #105289 !important;
  973. }
  974.  
  975. .buttonConn {
  976. color: #fff !important;
  977. background: #12a3eb !important;
  978. cursor: pointer !important;
  979. padding: 10px !important;
  980. border-radius: 5px !important;
  981. height: auto !important;
  982. }
  983.  
  984. .buttonConn:hover {
  985. background: #105289 !important;
  986. }
  987. .pun .user .user-info .post_field:nth-last-child(2){
  988. border: 0px solid #DDD;
  989. border-left: 0px solid #DDD;
  990. margin-bottom:0px;
  991. padding: 4px;
  992. text-align: center;
  993. float: left;
  994. }
  995. /* Menu Styles */
  996.  
  997. .third-level-menu
  998. {
  999. position: absolute;
  1000. top: -20px;
  1001. right: -150px;
  1002. width: 150px;
  1003. list-style: none;
  1004. padding: 0;
  1005. margin: 0;
  1006. display: block;
  1007. }
  1008. .third-level-menu > li
  1009. {
  1010. background: #333 !important;
  1011. color: #000;
  1012. font-size: 12px;
  1013. padding: 2px 9px;
  1014. text-decoration: none;
  1015. transition: color .2s ease;
  1016. width: 200px;
  1017. position: relative;
  1018. box-shadow: 2px 1px 2px 1px rgba(27, 27, 27, 0.17);
  1019. transform: translate(0, 20px);
  1020. }
  1021. .third-level-menu > li:hover { background: #2ea3f2 !important; color: #ccc;}
  1022.  
  1023. .second-level-menu
  1024. {
  1025. position: absolute;
  1026. top: 30px;
  1027. left: 0;
  1028. width: 150px;
  1029. list-style: none;
  1030. padding: 0;
  1031. margin: 0;
  1032. display: block;
  1033. color: #000;
  1034. }
  1035. .second-level-menu > li
  1036. {
  1037. background: #333 !important;
  1038. color: #000;
  1039. font-size: 12px;
  1040. padding: 2px 9px;
  1041. text-decoration: none;
  1042. transition: color .2s ease;
  1043. width: 200px;
  1044. position: relative;
  1045. box-shadow: 2px 1px 2px 1px rgba(27, 27, 27, 0.17);
  1046. transform: translate(0, 20px);
  1047. }
  1048. .second-level-menu > li:hover { background: #2ea3f2 !important; color: #ccc !important;}
  1049.  
  1050. #community_app_menu
  1051. {
  1052. list-style: none;
  1053. padding: 0;
  1054. margin: 0;
  1055. }
  1056.  
  1057. #community_app_menu li:hover > ul
  1058. {
  1059. z-index: 9999 !important;
  1060. display: inline;
  1061. }
  1062. /* Menu Link Styles */
  1063.  
  1064. #community_app_menu a /* Apply to all links inside the multi-level menu */
  1065. {
  1066. display: block;
  1067. line-height: 30px;
  1068. }
  1069. #community_app_menu a:hover { color: #000000; transform: translate(0, 0); }
  1070. .second-level-menu:before {
  1071. content: ' ';
  1072. position: absolute;
  1073. top: 7px;
  1074. left: 20px;
  1075. width: 0;
  1076. height: 3px;
  1077. border-style: solid;
  1078. border-width: 0 10px 10px 10px;
  1079. border-color: transparent transparent #333 transparent;
  1080. z-index: 99999;
  1081. }
  1082. .second-level-menu > li:after {
  1083. -moz-transform: rotate(-45deg);
  1084. -moz-transition: border-color .2s ease;
  1085. -ms-transform: rotate(-45deg);
  1086. -ms-transition: border-color .2s ease;
  1087. -o-transform: rotate(-45deg);
  1088. -o-transition: border-color .2s ease;
  1089. -webkit-transform: rotate(-45deg);
  1090. -webkit-transition: border-color .2s ease;
  1091. border-bottom: 1px solid #fff;
  1092. border-right: 1px solid #fff;
  1093. content: "";
  1094. height: 4px;
  1095. position: absolute;
  1096. right: 10px;
  1097. top: 13px;
  1098. transform: rotate(-45deg);
  1099. transition: border-color .2s ease;
  1100. width: 4px;
  1101. }
  1102. #community_app_menu a {
  1103. color: #fff !important;
  1104. }
  1105. .second-level-menu:hover > ul,
  1106. .second-level-menu > ul:hover {
  1107. opacity: 1;
  1108. transform: translate(0, 0);
  1109. pointer-events: auto;
  1110. }
  1111.  
  1112. /* Tooltip */
  1113. .tooltipster-default {
  1114. background: #2d2d2d !important;
  1115. border-radius: 5px;
  1116. box-shadow: 0 0 14px rgba(0,0,0,0.3);
  1117. color: #ffffff !important;
  1118. }
  1119. .tooltip-actions {
  1120. width: 100%;
  1121. float: left;
  1122. margin: 8px -10px -8px -10px;
  1123. padding: 5px 10px 5px 10px;
  1124. background: #212121 !important;
  1125. }
  1126. .fa_group_preview {
  1127. font-family: Arial;
  1128. font-size: 12px;
  1129. color: #fff !important;
  1130. }
  1131. .lz-dropdown-user::before {
  1132. border-color: transparent transparent #333 transparent !important;
  1133. }
  1134. #primary_nav #community_app_menu li ul {
  1135. z-index: 9999 !important;
  1136. transition: none !important;
  1137. }
  1138. #primary_nav #community_app_menu li > ul::before {
  1139. display: none;
  1140. }
  1141.  
  1142. #primary_nav #community_app_menu li:hover > ul::before {
  1143. display: block;
  1144. }
  1145.  
  1146. #primary_nav #community_app_menu li > ul > li {
  1147. height: 0px;
  1148. font-size: 0px;
  1149. opacity: 0;
  1150. visibility: hidden;
  1151. transition: height 200ms linear !important;
  1152. }
  1153.  
  1154. #primary_nav #community_app_menu li:hover > ul > li {
  1155. height: 32px;
  1156. visibility: visible;
  1157. font-size: 13px;
  1158. opacity: 1;
  1159. }
  1160. .four-level-menu
  1161. {
  1162. position: absolute;
  1163. top: -20px;
  1164. right: -150px;
  1165. width: 150px;
  1166. list-style: none;
  1167. padding: 0;
  1168. margin: 0;
  1169. display: block;
  1170. -webkit-transition: all 0.25s ease-in-out;
  1171. }
  1172. .four-level-menu > li
  1173. {
  1174. background: #333 !important;
  1175. color: #000;
  1176. font-size: 12px;
  1177. padding: 2px 9px;
  1178. text-decoration: none;
  1179. transition: color .2s ease;
  1180. width: 200px;
  1181. position: relative;
  1182. box-shadow: 2px 1px 2px 1px rgba(27, 27, 27, 0.17);
  1183. transform: translate(0, 20px);
  1184. }
  1185. .four-level-menu > li:hover { background: #2ea3f2 !important; color: #ccc;}
  1186. #community_app_menu li:hover {
  1187. z-index: 10000;
  1188. }
  1189. .wrapper-head {
  1190. border-top: 2px solid #7bb7b7;
  1191. }
  1192. global.min.css:1
  1193. .wrapper-head {
  1194. background: #202C38;
  1195. width: 100%;
  1196. margin: 0 auto 0px;
  1197. text-align: center;
  1198. border-top: 2px solid #4da6ff;
  1199. border-bottom: 2px solid #beccda;
  1200. }
  1201. #panel-top p {
  1202. margin-top: 20px;
  1203. padding-top: 15px;
  1204. color: #444 !important;
  1205. }
  1206. #panel-top {
  1207. border-bottom: #2ea3f2 1px solid;
  1208. background: #f0f0f0;
  1209. height: 45px;
  1210. }
  1211. .fa-search1 {
  1212. position: absolute;
  1213. display: flex;
  1214. right: 65px;
  1215. margin-top: -23px;
  1216. }
  1217.  
  1218. .fa-search1-select {
  1219. line-height: 32px;
  1220. text-align: center;
  1221. min-width: 120px;
  1222. font-size: 12px;
  1223. box-sizing: border-box;
  1224. transition: 250ms transform;
  1225. transform-origin: right center;
  1226. transform: scaleX(0);
  1227. }
  1228.  
  1229. .fa-search1-transition-in .fa-search1-select {
  1230. transition-delay: 250ms;
  1231. }
  1232.  
  1233. .fa-search1-focus .fa-search1-select {
  1234. z-index: 99999;
  1235. transform: scaleX(1);
  1236. }
  1237.  
  1238. .fa-search1-select > a::after {
  1239. content: "\f123";
  1240. font-family: Ionicons;
  1241. margin-left: 5px;
  1242. }
  1243.  
  1244. .fa-search1-select > a {
  1245. background-color: #ccc;
  1246. border-radius: 16px 0 0 16px;
  1247. padding: 0 20px;
  1248. transition: 250ms background-color;
  1249. }
  1250.  
  1251. .fa-search1-select > a:hover,
  1252. .fa-search1-select > a:active,
  1253. .fa-search1-select > a:focus {
  1254. background-color: #b7b7b7;
  1255. color: #000;
  1256. }
  1257.  
  1258. .fa-search1-selected,
  1259. .fa-search1-dropdown > li > a {
  1260. color: #333;
  1261. text-decoration: none;
  1262. display: block;
  1263. }
  1264.  
  1265. .fa-search1-dropdown {
  1266. box-shadow: 2px 1px 2px 1px rgba(27, 27, 27, 0.17);
  1267. background-color: #333;
  1268. margin: 0;
  1269. padding: 0;
  1270. border-radius: 3px;
  1271. position: absolute;
  1272. top: 47px;
  1273. transform: translate(0, -15px);
  1274. opacity: 0;
  1275. pointer-events: none;
  1276. transition-duration: 250ms;
  1277. transition-property: transform, opacity;
  1278. }
  1279.  
  1280. .fa-search1-open .fa-search1-dropdown {
  1281. opacity: 1;
  1282. transform: translate(0, 0);
  1283. pointer-events: auto;
  1284. }
  1285.  
  1286. .fa-search1-dropdown::before,
  1287. .fa-search1-dropdown::after {
  1288. content: ' ';
  1289. position: absolute;
  1290. width: 0;
  1291. height: 0;
  1292. border-style: solid;
  1293. border-width: 0 15px 15px 15px;
  1294. border-color: transparent transparent #333333 transparent;
  1295. top: -15px;
  1296. left: 50%;
  1297. transform: translate(-50%, 0)
  1298. }
  1299.  
  1300. .fa-search1-dropdown::before {
  1301. border-width: 0 17px 17px 17px;
  1302. top: -17px;
  1303. border-color: transparent transparent #444 transparent;
  1304. }
  1305.  
  1306. .fa-search1-dropdown > li {
  1307. list-style: none;
  1308. text-align: left;
  1309. }
  1310.  
  1311. .fa-search1-dropdown > li > a {
  1312. color: #fff !important;
  1313. display: block;
  1314. padding: 0 30px;
  1315. line-height: 40px;
  1316. position: relative;
  1317. white-space: nowrap;
  1318. transition: 250ms background-color;
  1319. }
  1320.  
  1321. .fa-search1-dropdown > li > a:hover,
  1322. .fa-search1-dropdown > li > a:active,
  1323. .fa-search1-dropdown > li > a:focus {
  1324. background-color: #2ea3f2;
  1325. }
  1326.  
  1327. .fa-search1-dropdown > li > a::before {
  1328. position: absolute;
  1329. font-size: 16px;
  1330. left: 15px;
  1331. top: 50%;
  1332. transform: translate(-50%, -50%);
  1333. font-family: Ionicons;
  1334. }
  1335.  
  1336. .fa-search1-dropdown > li > .fa-search1-all {
  1337. color: #fff !important;
  1338. border-bottom: 1px #444 solid;
  1339. border-radius: 3px;
  1340. }
  1341.  
  1342. .fa-search1-dropdown > li > .fa-search1-advanced {
  1343. border-radius: 3px;
  1344. border-top: 1px #444 solid;
  1345. }
  1346.  
  1347. .fa-search1-dropdown > li > .fa-search1-advanced::before {
  1348. content: "\f13e";
  1349. }
  1350.  
  1351. .fa-search1-dropdown > li > .fa-search1-active::before {
  1352. content: "\f122";
  1353. }
  1354.  
  1355. .fa-search1-input {
  1356. position: relative;
  1357. }
  1358.  
  1359. .fa-search1-input input {
  1360. line-height: 32px;
  1361. border: none;
  1362. padding: 0 15px;
  1363. border-radius: 16px;
  1364. min-width: 200px;
  1365. transition: 250ms border-radius;
  1366. }
  1367.  
  1368. .fa-search1-transition-out .fa-search1-input input {
  1369. transition-delay: 250ms;
  1370. }
  1371.  
  1372. .fa-search1-focus .fa-search1-input input {
  1373. border-radius: 0 16px 16px 0;
  1374. }
  1375.  
  1376. .fa-search1-input input:active,
  1377. .fa-search1-input input:focus {
  1378. outline: none;
  1379. }
  1380.  
  1381. .fa-search1-input button {
  1382. position: absolute;
  1383. top: 50%;
  1384. right: 5px;
  1385. transform: translate(0, -50%);
  1386. background: none;
  1387. border: none;
  1388. padding: 0;
  1389. margin: 0;
  1390. font-size: 16px;
  1391. width: 24px;
  1392. height: 24px;
  1393. line-height: 24px;
  1394. border-radius: 50%;
  1395. cursor: pointer;
  1396. transition: 250ms background-color;
  1397. }
  1398.  
  1399. .fa-search1-input button:active,
  1400. .fa-search1-input button:hover,
  1401. .fa-search1-input button:focus {
  1402. background-color: #eee;
  1403. outline: none;
  1404. }
  1405. @keyframes fa_animation {
  1406. 0% {
  1407. border-color: #b7b7b7;
  1408. -webkit-transform: rotate(0deg) scale(1);
  1409. transform: rotate(0deg) scale(1);
  1410. color: #444;
  1411. border-radius: 50px;
  1412. }
  1413. 50% {
  1414. border-color: #2ea3f2;
  1415. -webkit-transform: rotate(15deg) scale(.7);
  1416. transform: rotate(15deg) scale(0.8);
  1417. color: #2ea3f2;
  1418. cursor: pointer;
  1419. border-radius: 50px;
  1420. }
  1421. 100% {
  1422. border-color: #b7b7b7;
  1423. -webkit-transform: rotate(0deg) scale(1);
  1424. transform: rotate(0deg) scale(1);
  1425. color: #444;
  1426. border-radius: 50px;
  1427. }
  1428. }
  1429. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement