Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

step 1 #21

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions level-1/step-1/step-1.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,22 @@
background: #D8D8D8;
}

/* Use float to get this container in its desired location. */

.content-left {
width: 34%;
/* This height is a placeholder. You will need to make some adjustments to get this container to look like the design. */
height: 100px;
height: calc( 100vh - 200px );
background: #565555;
float: left;
}


/* Use float to get this container in its desired location. */

.content-mid {
width: 66%;
/* This height is a placeholder. You will need to make some adjustments to get this container to look like the design. */
height: 100px;
height: calc( 100vh - 200px );
background: #B0B0B0;
float: right;
}

/* Use float to get this container to the bottom of the screen */
Expand All @@ -29,4 +28,6 @@
width: 100%;
height: 100px;
background: #3A3A3A;
}
position: absolute;
bottom: 0;
}