Skip to content

Commit

Permalink
Add margins to the images in projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Cosme Valera committed Oct 5, 2024
1 parent 51828a7 commit 6973a9e
Show file tree
Hide file tree
Showing 16 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion sass/_responsive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ main {
}
}

@media screen and (max-width: $break-small) {
@media screen and (max-width: $break-medium) {
.filter-buttons {
overflow: auto; /* Phone: scrollbar for filter buttons*/
justify-content: flex-start;
Expand Down
1 change: 1 addition & 0 deletions sass/projects.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ span.colorful {

.project-cards-row {
overflow: hidden;
margin: 0 clamp(0.5rem, 2vw, 10rem);

.project-card {
position: relative;
Expand Down
Binary file removed static/images/LeagueOfPokemon.jpg
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
14 changes: 7 additions & 7 deletions templates/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<ul>
<li>
<a href="/">
<img class="portrait-menu-item" src="{{ get_url(path='images/portrait2.jpg') }}" alt="Portrait" />
<img class="portrait-menu-item" src="{{ get_url(path='images/projects/portrait2.jpg') }}" alt="Portrait" />
</a>
</li>
{% for item in config.extra.nav %}
Expand Down Expand Up @@ -46,7 +46,7 @@ <h2 class="presentation-text"><span class="colorful">Check</span> Out <span clas

<div class="project-card col-12 col-md-6 col-xl-4 animate__animated animate__bounceInLeft">
<div class="project-image">
<img src="{{ get_url(path='images/FitCal.png') }}" alt="FitCal" />
<img src="{{ get_url(path='images/projects/FitCal.png') }}" alt="FitCal" />
<div class="project-details-overlay">
<h3 class="card-title">FitCal</h3>
<p class="card-technology">Angular | TypeScript | Java (Spring)</p>
Expand All @@ -57,7 +57,7 @@ <h3 class="card-title">FitCal</h3>

<div class="project-card col-12 col-md-6 col-xl-4 animate__animated animate__bounceIn">
<div class="project-image">
<img src="{{ get_url(path='images/Sympho.png') }}" alt="Sympho" />
<img src="{{ get_url(path='images/projects/Sympho.png') }}" alt="Sympho" />
<div class="project-details-overlay">
<h3 class="card-title">Sympho</h3>
<p class="card-technology">JavaScript | Node | Vexflow.js</p>
Expand All @@ -68,7 +68,7 @@ <h3 class="card-title">Sympho</h3>

<div class="project-card col-12 col-md-6 col-xl-4 animate__animated animate__bounceInRight">
<div class="project-image">
<img src="{{ get_url(path='images/LeagueOfPokemon/AI4Crop.png') }}" alt="League of Pokemon" />
<img src="{{ get_url(path='images/projects/LeagueOfPokemon.png') }}" alt="League of Pokemon" />
<div class="project-details-overlay">
<h3 class="card-title">League of Pokemon</h3>
<p class="card-technology">Java</p>
Expand All @@ -79,7 +79,7 @@ <h3 class="card-title">League of Pokemon</h3>

<div class="project-card col-12 col-md-6 col-xl-4 animate__animated animate__bounceInLeft">
<div class="project-image">
<img src="{{ get_url(path='images/AndroidDepartmentQuest.jpg') }}" alt="AndroidDepartmentQuest" />
<img src="{{ get_url(path='images/projects/AndroidDepartmentQuest.jpg') }}" alt="AndroidDepartmentQuest" />
<div class="project-details-overlay">
<h3 class="card-title">Department Quest</h3>
<p class="card-technology">Java (Android)</p>
Expand All @@ -90,7 +90,7 @@ <h3 class="card-title">Department Quest</h3>

<div class="project-card col-12 col-md-6 col-xl-4 animate__animated animate__bounceIn">
<div class="project-image">
<img src="{{ get_url(path='images/Inventory.png') }}" alt="Inventory" />
<img src="{{ get_url(path='images/projects/Inventory.png') }}" alt="Inventory" />
<div class="project-details-overlay">
<h3 class="card-title">Inventory</h3>
<p class="card-technology">JavaScript | Node | MongoDB</p>
Expand All @@ -101,7 +101,7 @@ <h3 class="card-title">Inventory</h3>

<div class="project-card col-12 col-md-6 col-xl-4 animate__animated animate__bounceInRight">
<div class="project-image">
<img src="{{ get_url(path='images/CoreLink2.png') }}" alt="CoreLink" />
<img src="{{ get_url(path='images/projects/CoreLink2.png') }}" alt="CoreLink" />
<div class="project-details-overlay">
<h3 class="card-title">CoreLink</h3>
<p class="card-technology">React | Module Federation | Turborepo</p>
Expand Down

0 comments on commit 6973a9e

Please sign in to comment.