Created
August 31, 2017 19:06
-
-
Save yllieth/19c2a7c526389a73f56de5546da7b98f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div id="page"> | |
<div id="nav-top-bar">topbar</div> | |
<div id="main-content"> | |
<div id="nav-left-bar">nav left bar</div> | |
<div id="nav-left-menu">nav left menu</div> | |
<div id="content">content</div> | |
</div> | |
</div> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#page { | |
display: flex; | |
flex-direction: column; | |
height: 100vh; | |
#nav-top-bar { | |
display: flex; | |
flex-direction: row; | |
height: 100px; | |
background-color: red; | |
} | |
#main-content { | |
display: flex; | |
flex-direction: row; | |
flex: 1; | |
#nav-left-bar { | |
display: flex; | |
flex-direction: column; | |
width: 100px; | |
background-color: green; | |
} | |
#nav-left-menu { | |
display: flex; | |
flex-direction: column; | |
width: 200px; | |
background-color: blue; | |
} | |
#content { | |
display: flex; | |
flex-direction: row; | |
flex: 1; | |
background-color: yellow; | |
} | |
} | |
} |
Author
yllieth
commented
Aug 31, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment