Files
TechRadarAJR/styles/components/item-page.css
2017-02-11 22:53:54 +01:00

33 lines
473 B
CSS

.item-page {
display: flex;
height: 100vh;
&__nav,
&__content {
height: 100%;
}
&__header {
min-height: 40px;
margin: 50px 0 25px;
}
&__nav {
flex: 0 0 30%;
background: var(--color-gray-dark);
&__inner {
float: right;
width: 375px;
margin: 60px 40px 0 0;
}
}
&__content {
flex: 0 0 70%;
background: var(--color-white);
&__inner {
width: 680px;
margin: 60px 0 0 110px;
}
}
}