2015-08-10 23:55:43 +02:00
|
|
|
/**
|
|
|
|
* @provides phui-two-column-view-css
|
|
|
|
*/
|
|
|
|
|
2016-02-23 16:23:58 +01:00
|
|
|
.phui-two-column-view {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-two-column-container {
|
|
|
|
max-width: 1024px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-two-column-view .phui-two-column-header .phui-header-shell {
|
|
|
|
padding-bottom: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .phui-two-column-view .phui-two-column-header .phui-header-shell {
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-two-column-fluid .phui-two-column-container {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2016-02-17 22:05:24 +01:00
|
|
|
.phui-two-column-content {
|
2015-08-10 23:55:43 +02:00
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-two-column-row {
|
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .phui-two-column-view .phui-main-column {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .phui-two-column-view .phui-side-column {
|
|
|
|
width: 320px;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .phui-two-column-view
|
|
|
|
.phui-main-column .phui-object-box:first-child {
|
|
|
|
margin: 0 16px 0 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .phui-two-column-view
|
2016-01-24 01:02:29 +01:00
|
|
|
.phui-side-column .phui-object-box {
|
2015-08-10 23:55:43 +02:00
|
|
|
margin: 0 16px 16px 0;
|
|
|
|
}
|
2015-08-17 02:50:11 +02:00
|
|
|
|
|
|
|
.phui-two-column-view pre {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|