mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
27 lines
427 B
CSS
27 lines
427 B
CSS
|
/**
|
||
|
* @provides aphront-two-column-view-css
|
||
|
*/
|
||
|
|
||
|
.aphront-two-column {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.device-desktop .aphront-two-column.aphront-two-column-padded {
|
||
|
margin: 20px;
|
||
|
}
|
||
|
|
||
|
.device-desktop .aphront-main-column {
|
||
|
margin-right: 300px;
|
||
|
}
|
||
|
|
||
|
.device-desktop .aphront-side-column {
|
||
|
width: 300px;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
}
|
||
|
|
||
|
.device-phone .aphront-two-column.aphront-two-column-padded {
|
||
|
margin: 10px;
|
||
|
}
|