1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 16:04:24 +03:00
ifhub.club/application/frontend/skin/synio/components/info-list/css/info-list.css
Denis Shakhov 11618a9ff0 Шаблон Synio
Профиль пользователя, Стена
2016-09-01 10:14:41 +07:00

57 lines
1,015 B
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.

/**
* Список с информацией
*/
.ls-info-list {
margin-bottom: 20px;
list-style: none;
padding: 0;
}
.ls-info-list:last-child {
margin-bottom: 0;
}
.ls-info-list-item {
position: relative;
margin-bottom: 5px;
overflow: hidden;
display: table;
width: 100%;
}
.ls-info-list-item:last-child {
margin-bottom: 0;
}
.ls-info-list-item:after {
content: "";
border-bottom: 1px dotted #d1d8dc;
position: absolute;
left: 0;
right: 0;
top: 1.2em;
z-index: 1;
}
.ls-info-list-item > * {
display: table-cell;
vertical-align: top;
}
.ls-info-list-item-label {
width: 130px;
position: relative;
z-index: 10;
}
.ls-info-list-item-content {
font-weight: normal;
background: #fff;
position: relative;
z-index: 10;
margin-left: 150px;
padding-left: 2px;
}
.ls-info-list-item-content a {
text-decoration: underline;
}
.ls-info-list-item-label-text {
background: #fff;
padding-right: 2px;
}