Skip to content

Commit

Permalink
everything else LOL
Browse files Browse the repository at this point in the history
  • Loading branch information
sudosign committed Dec 24, 2024
1 parent 68046f8 commit 3088914
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 6 deletions.
26 changes: 21 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class ="image-container"> this is a placeholder for an image</div>
</div>
</div>
<!-- <div class = "gallery">
<div class = "gallery">
Some random information.
<div class = "cards">
<div class = "card-container">
Expand All @@ -47,14 +47,30 @@
this is some subtext under an illustration or image
</div>
</div>
</div>
</div>
<div class = "quote-container">
<div class="quote">
This is an inspiring quote, or a testimonial from a customer.
Maybe it's just filling up space, or maybe people will actually read it.
Who knows? All I know is that it looks nice.
</div>
<div class = "quote-author">
- Thor, God of Thunder
</div>
</div>
<div class = "advertisement-section">
<div class = "advertisement-container">
<div class = "advertisement-text">
Call to action! It's Time!
<p>Sign up for our product by click that button right over there!</p>
</div>
<div class ="button-container">
<button class="advertisement-button">Sign Up</button>
</div>
</div>
</div> -->
</div>
<div class = "footer">
Copyright @ The Odin Project 2021
</div>
</body>
</html>
87 changes: 86 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ button{
background-color:#3882F6;
border-radius: 5px;
color:#E5E7Eb

}

.front .image-container{
Expand All @@ -78,4 +77,90 @@ button{
align-items: center;
justify-content: center;
flex: 1;
}

.gallery{
font-size: 36px;
color: #1F2937;
font-weight: 900;
display:flex;
flex-direction: column;
align-items: center;
padding:50px;
gap:50px;
}

.cards{
display:flex;
justify-content: center;
gap:50px;
}

.cards .card-container{
font-size:18px;
color:#1F2937;
font-weight:300;
text-wrap: wrap;
flex: 0 0 10px;
text-align:center
}

.card{
width:200px;
height:200px;
border: 4px;
border-radius: 20px;
color: rgb(103, 147, 241);
border-style: solid;
margin: 8px;
}

.quote-container{
background-color:#E5E7Eb;
display:flex;
padding: 150px 500px;
flex-direction: column;
gap:16px;
}

.quote{
font-size:36px;
color:#1F2937;
font-style:italic;
}

.quote-author{
text-align: end;
font-weight:900;
}

.advertisement-section{padding:100px 200px;}

.advertisement-container{
background-color: #3882F6;
display:flex;
padding: 50px 100px;
border-radius: 4px;
justify-content: space-between;
color:#E5E7Eb;
font-size:24px;
font-weight: 900;
}

.advertisement-text p{
font-size: 18px;
font-weight: 300;
}

.advertisement-button{
border: 2px solid white;
}

.footer{
background-color: #1F2937;
color:#E5E7Eb;
display:flex;
align-items: center;
justify-content: center;
padding: 40px;
}

0 comments on commit 3088914

Please sign in to comment.