1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-19 17:28:23 +03:00
ifhub.club/application/frontend/skin/synio/components/block/css/block.css
2016-09-02 10:16:20 +07:00

99 lines
1.8 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Блок
*
* @license GNU General Public License, version 2
* @copyright 2013 OOO "ЛС-СОФТ" {@link http://livestreetcms.com}
* @author Denis Shakhov <denis.shakhov@gmail.com>
*/
.ls-block {
overflow: hidden;
border-bottom: 1px dotted #dce1e6;
padding-bottom: 25px;
}
.ls-block + .ls-block {
margin-top: 25px;
}
.ls-block:last-child {
margin-bottom: 0;
padding-bottom: 0;
border: none;
}
.ls-block .text-help {
font-size: 11px;
line-height: 14px;
}
.ls-block .ls-text {
font-size: 13px;
line-height: 18px;
}
.ls-block .max-height-200 {
overflow: auto;
max-height: 200px;
position: relative;
}
/* Шапка */
.ls-block-header {
padding: 0 0 15px;
position: relative;
}
.ls-block-header .ls-block-title {
margin-bottom: 0;
font-size: 22px;
line-height: 1em;
font-weight: normal;
color: #333;
}
/* Навигация */
.ls-block .ls-tab-list {
padding: 15px 0;
margin-bottom: 0;
border-bottom: 1px solid #eee;
}
/* Контент */
.ls-block-content {
}
/* Подвал */
.ls-block-footer {
border-top: 1px solid #eee;
padding: 15px 0;
font-size: 11px;
color: #b9c2c2;
}
.ls-block-footer a {
color: #727a90;
text-decoration: underline;
}
.ls-block-footer .ls-search-form {
padding: 0;
margin: 5px 0;
}
/**
* Поддержка списков
*/
.ls-block .ls-item-group {
border: none;
}
.ls-block .ls-block-content + .ls-item-group {
border-top: 1px solid #eee;
}
/**
* @modifier nopadding Блок без отступов у контента
*/
.ls-block--nopadding .ls-block-content {
padding: 0;
}
/**
* @modifier transparent Блок без фона
*/
.ls-block--transparent {
background-color: transparent;
border-color: transparent;
}