Skip to content

step-1 #15

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions level-1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<main class="main-wrapper">

<header class="header">

HEADER
<div class="logo-container"></div>

<div class="menu-container"></div>
Expand All @@ -31,15 +31,15 @@
<section class="main-section">

<div class="content-left">

content-left
<div class="profile-image-container" ></div>

<div class="profile-links-container"></div>

</div>

<div class="content-mid">

content-mid
<section class="content-container">

<header class="content-mid-header"></header>
Expand All @@ -52,7 +52,7 @@

</section>

<footer class="footer"> </footer>
<footer class="footer"> FOOTER </footer>

</main>
</body>
Expand Down
32 changes: 30 additions & 2 deletions level-1/step-1/step-1.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,32 @@
.body {
font-family: Arial, Helvetica, sans-serif;
}

.header {
width: 100%;
height: 100px;
background: #D8D8D8;
font-size: 1.5rem;
font-weight: 600;
text-align: center;
line-height: 100px;
}

/* 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;

background: #565555;
float: left;
height: 750px;
color: #FFFEFF;
font-size: 1.7rem;
text-align: center;
font-weight: 700;
line-height: 750px;

}


Expand All @@ -19,8 +35,13 @@
.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: 750px;
background: #B0B0B0;
float: right;
font-size: 1.7rem;
text-align: center;
font-weight: 700;
line-height: 750px;
}

/* Use float to get this container to the bottom of the screen */
Expand All @@ -29,4 +50,11 @@
width: 100%;
height: 100px;
background: #3A3A3A;
position: absolute;
bottom: 0px;
font-size: 1.5rem;
font-weight: 600;
text-align: center;
color: #FFFFFF;
line-height: 100px;
}