Skip to content

Commit

Permalink
added pictures
Browse files Browse the repository at this point in the history
  • Loading branch information
lillywallawitsch committed Feb 24, 2024
1 parent 65abe74 commit 40c3abb
Show file tree
Hide file tree
Showing 11 changed files with 64 additions and 2 deletions.
Binary file added Images/IMG_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/Malik.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/PXL_2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/PXL_3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/PXL_4jpeg.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/Vitor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/lilly.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ <h4> What we've done so far:</h4>
</section>


<div class="image-container">
<img src="Images/PXL_3.jpg">
<img src="Images/PXL_4jpeg.jpeg">
</div>

<footer>
<div class="container">
<p>&copy; 2024 Wondernest.net. All rights reserved.</p>
Expand Down
5 changes: 5 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ <h4> What we've done so far:</h4>
</div>
</section>

<div class="image-container">
<img src="Images/lilly.jpg">
<img src="Images/Malik.png">
<img src="Images/Vitor.png">
</div>

<footer>
<div class="container">
Expand Down
8 changes: 6 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,21 @@ <h2> What we do:</h2>
</article>

<article>
<h3> Why we do it:</h3>
<h2> Why we do it:</h2>
<p>Wondernest: Host, organize, and attend small in-person events focused on genuine connections, enhancing social lives in big cities</p>
</article>

<article>
<h4> What we've done so far:</h4>
<h2> What we've done so far:</h2>
<p>Our Users as well as our Team has hosted 20 diverent types of get togethers all over Europe.</p>
</article>
</div>
</section>

<div class="image-container">
<img src="Images/IMG_1.jpg">
<img src="Images/PXL_2.jpg">
</div>

<footer>
<div class="container">
Expand Down
48 changes: 48 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@ header {
padding: 20px 0;
}

h1 {
font-size: 36px; /* Adjust the font size as needed */
font-weight: bold; /* Make the font bold */
color: olive; /* Set the color of the heading */
text-align: center; /* Center align the heading */
text-transform: uppercase; /* Transform text to uppercase */
letter-spacing: 2px; /* Add space between letters */
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
/* You can add more styles like font-family, line-height, etc. as per your design */
}


button {
text-decoration: none;
background-color:olive; /* Dark background */
Expand All @@ -46,6 +58,42 @@ button:hover {
margin: 0 auto;
}

.image-container {
display: flex;
justify-content: center; /* Center the images horizontally */
align-items: center; /* Center the images vertically */
margin-bottom: 20px; /* Add space below the images */
margin-top: 20px; /* Add space below the images */
flex-direction: row; /* Default: images are displayed in a row */
}

.image-container img {
width: 200px; /* Adjust width as needed */
height: 200px; /* Adjust height as needed */
border-radius: 50%;
object-fit: cover;
margin: 0 10px; /* Add space between images */
padding: 0 10px;
}


@media (max-width: 768px) {
.image-container {
flex-direction: column; /* Change to column layout for smaller screens */
}
.image-container img {
width: 200px; /* adjust width for smaller screens */
height: 200px; /* adjust height for smaller screens */
}
}

@media (max-width: 480px) {
.image-container img {
width: 160px; /* adjust width for even smaller screens */
height: 160px; /* adjust height for even smaller screens */
}
}


footer {
background-color: oldlace;
Expand Down

0 comments on commit 40c3abb

Please sign in to comment.