Тут вообще-то ничего интересного,
просто мои закладки и прочий говнокод

EVO CMS / CSS + JS

fix.css
Сбрасываем стили

@charset "utf-8";


form {
margin: 0px;
padding: 0px;
}


.opa { opacity: 0.5; }

.rad2 {
border-radius: 2px;
}


.rad3 {
border-radius: 3px;
}

.rad4 {
border-radius: 4px;
}

.rad5 {
border-radius: 5px;
}

.rad6 {
border-radius: 6px;
}
.rad50 {
border-radius: 100% !important;
overflow: hidden !important;
}


.clearfix {
display: inline-block;
width: 100%;
height: auto;
}


img {
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
/* width: 100%; */
max-width: 100%;
height: auto !important;
}

/* .errors {
font-size: 11px;
color: #C00;
margin-bottom: 10px;
} */


.justifyfull {
text-align: justify;
}

.justifyleft {
text-align: left;
}

.justifyright {
text-align: right;
}

.justifycenter {
text-align: center;
}


p { margin-top: 0px;}

pagerdiv
CSS код для разбивки на страницы

.pagerdiv {
font-size: 16px;
line-height: 16px;

}

.pagerdiv .pagination a {
display: block;
padding: 10px;
padding-left: 12px;
padding-right: 12px;
margin-right: 2px;
border-radius: 4px;
float: left;
text-decoration: none;
transition-duration: 0.5s;
}

.pagerdiv .pagination span {
display: block;
padding: 10px;
padding-left: 12px;
padding-right: 12px;
margin-right: 2px;
border-radius: 4px;
float: left;
text-decoration: none;
}

.pagerdiv .pagination a:hover {
background-color: #eca016;
color: #FFF;

}

 

.pagerdiv .pagination b {
font-weight: normal;
display: block;
padding: 10px;
padding-left: 12px;
padding-right: 12px;
margin-right: 2px;
border-radius: 4px;
float: left;
background-color:#c40d23;
color: #FFF;
}

.pagerdiv .pagination a.current {
font-weight: normal;
display: block;
padding: 10px;
padding-left: 12px;
padding-right: 12px;
margin-right: 2px;
border-radius: 4px;
float: left;
background-color:#c40d23;
color: #FFF;
}

Cookies.js
Работа с cookies

<script src="/js/js.cookie.min.js"></script>

Cookies.set('CookieName', 'false', { expires: 7, path: '/'});

if ( Cookies.get('nohide')=='true' ) {
 // DO THIS
}

 

{{preloader}}
HTML код прелоадера

<link href="/preloader/preloader.css" rel="stylesheet" type="text/css" />
<script src="/preloader/preloader.js"></script>

 

<!-- PRELOADER -->
<input type="hidden" id="progress_width" value="0">
<div class='progress' id="progress_div">
<div class='bar' id='bar1'></div>
<div class='percent' id='percent1'></div>
</div>
<!--//PRELOADER -->