This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | MODx Ace Material Theme | |
| 1. Системные настройки > Пространство имен "ace": | |
| Размер шрифта: 18px | |
| Высота области редактирования: 560 | |
| Невидимые символы: Да | |
| Мягкая табуляция: Нет | |
| Размер табуляции: 2 | |
| Тема редактора: tomorrow_night | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <div class="top" title="Наверх"><i class="fa fa-angle-double-up"></i></div> | |
| .top | |
| position: fixed | |
| bottom: 25px | |
| background-color: #E0E0E0 | |
| border-radius: 10em | |
| color: #666 | |
| font-size: 26px | |
| width: 50px | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | $( ".toggle-close" ).hide(); | |
| $( ".overlap-mnu" ).hide(); | |
| $( ".toggle-open" ).click(function() { | |
| $( ".overlap-mnu" ).slideToggle(500); | |
| $( ".toggle-open" ).hide(); | |
| $( ".toggle-close" ).show(); | |
| }); | |
| $( ".toggle-close" ).click(function() { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | RewriteCond %{HTTP_USER_AGENT} wget [NC] | |
| RewriteRule .* - [F] | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | RewriteCond %{HTTP_HOST} . | |
| RewriteCond %{HTTP_HOST} www.placeburg.com [NC] | |
| RewriteRule (.*) http://placeburg.com/$1 [R=301,L] | |
| RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.(htm(l)?|php)\ HTTP/ | |
| RewriteRule ^(([^/]+/)*)index\.(htm(l)?|php)$ http://placeburg\.com/$1 [R=301,L] | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | $(window).scroll(function() { | |
| var st = $(this).scrollTop(); | |
| if($(window).height()+500 > $("header").height()) { | |
| $("header .col-md-12").css({ | |
| "transform" : "translate3d(0px, " + st /18 + "%, 0px)", | |
| "-webkit-transform" : "translate3d(0px, " + st /18 + "%, 0px)", | |
| "opacity" : "1" - st/700 | |
| }); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | CSS: | |
| * { | |
| transition: filter .25s ease; | |
| } | |
| .mfp-wrap ~ * { | |
| filter: blur(1px); | |
| } | |
| Sass: | |
| * | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | $(window).scroll(function() { | |
| var st = $(this).scrollTop() /10; | |
| $(".object").css({ | |
| "transform" : "translate3d(0px, " + st + "%, .01px)", | |
| "-webkit-transform" : "translate3d(0px, " + st + "%, .01px)" | |
| }); | |
| }); |