FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

step-1 by feridunAKYOL · Pull Request #15 · DevMountain/HTML-CSS-Practice-Problems · GitHub

Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .css  (1) .html  (1) All 2 file types selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
8 changes: 4 additions & 4 deletions level-1/index.html
This file contains hidden or 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
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
This file contains hidden or 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
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;
}

Back | FazBrowse Home | New Git URL