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

Profile photo changed and project boxes improved #12

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
34 changes: 32 additions & 2 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,22 @@ a.nav-item:hover {

.box {
background-color: transparent;
border: 2px solid rgba(7, 59, 79, 0.5);
box-shadow: 0 0 15px 5px rgba(256, 256, 256, 0.1);
height: 400px;
width: 360px;
transition: transform 200ms ease-in;
cursor: pointer;
}
.box:hover{
transform: scale(1.02);
}


.title {
color: #fff;
text-align: left;
margin-bottom: 2rem;

}

.intro {
Expand All @@ -88,6 +97,27 @@ a.nav-item:hover {
background-color: transparent;
}

h3{
text-align: center;
font-size: 1.5rem;
font-weight: normal;
}

#projects .columns{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
align-content: center;
}

figure img{
margin: 1rem 0;
}




@media screen and (max-width: 768px) {
.nav-menu {
background-color: #063647;
Expand All @@ -105,4 +135,4 @@ a.nav-item:hover {
background-color: #fff;
}

}
}
Binary file added assets/img/profile2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 24 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<section id="about" class="section section-1">
<div class="container has-text-centered">
<!-- Source: https://flic.kr/p/pAZBNK -->
<img class="avatar" src="assets/img/profile.png">
<img class="avatar" src="assets/img/profile2.png">
</div>
<div class="container"></br>
<p class="intro">
Expand All @@ -71,35 +71,47 @@ <h3 class="title is-3">Projects</h3>

<div class="columns is-multiline is-desktop">
<!-- Project 1 -->
<div class="column">
<div class="box project-text">
<article>
<div>
<div><h3>Name of Project</h3>
<figure class="image project-figure">
<img src="assets/img/project-1.jpg" alt="Image">
<img src="assets/img/project-1.jpg" alt="Image"><p>
They don’t want us to eat. I told you all this before, when you have a swimming pool, do not use chlorine, use salt water, the healing, salt water is the healing.
</p>
</figure>
</div>
<div>
<p>
They don’t want us to eat. I told you all this before, when you have a swimming pool, do not use chlorine, use salt water, the healing, salt water is the healing.
</p>

</div>
</article>
</div>
</div>
<!-- Project 2 -->
<div class="column">
<div class="box project-text">
<article>
<div>
<h3>Name of Project</h3>
<figure class="image project-figure">
<img src="assets/img/project-2.jpg" alt="Image">
<img src="assets/img/project-2.jpg" alt="Image"><p>
Bless up. Another one. How’s business? Boomin. Don’t ever play yourself. Life is what you make it, so let’s make it.
</p>
</figure>
</div>
<div>
<p>
Bless up. Another one. How’s business? Boomin. Don’t ever play yourself. Life is what you make it, so let’s make it.

</article>
</div>
<!-- Project 3 -->
<div class="box project-text">
<article>
<div><h3>Name of Project</h3>
<figure class="image project-figure">
<img src="assets/img/project-1.jpg" alt="Image"><p>
They don’t want us to eat. I told you all this before, when you have a swimming pool, do not use chlorine, use salt water, the healing, salt water is the healing.
</p>
</figure>
</div>
<div>

</div>
</article>
</div>
Expand Down