I'm having trouble with the CSS aspect of my portfolio website design. I'm trying to create a layout like this:
Here's what I have so far:
body {
margin: 0;
padding: 0;
}
.menu {
height: 100vh;
width: 380px;
background-color: #5B91AC;
float: left;
position: fixed;
top: 0;
left: 0;
padding: 20px 10px;
}
.menu img {
width: 100%;
}
.container {
position: relative;
left: 400px;
width: 100%;
background-color: yellow;
padding: 20px 10px;
}
.content {
max-width: 768px;
}
<body>
<!-- Start of menu (at left side) -->
<div class="menu">
<img class="logo" src="http://placehold.it/788x208" />
</div>
<!-- End of menu -->
<div class="container">
<div class="content">
</div>
</div>
</body>
http://jsfiddle.net/gv19a3mw/1/
Can anyone give me some guidance or assist me with my CSS issues?