Files
TechRadarAJR/styles/components/item-page.css
2017-02-12 13:33:17 +01:00

40 lines
562 B
CSS

.item-page {
display: flex;
min-height: 100vh;
width: 100vw;
position: fixed;
top: 0;
left: 0;
&__nav,
&__content {
box-sizing: border-box;
padding-top: 150px;
height: 100vh;
position: relative;
}
&__header {
min-height: 40px;
margin: 0 0 25px;
}
&__nav {
flex: 0 0 37%;
&__inner {
float: right;
width: 375px;
margin: 0 40px 0 0;
}
}
&__content {
flex: 0 0 63%;
background: var(--color-white);
&__inner {
width: 680px;
margin: 0 0 0 100px;
}
}
}