Skip to content

Commit

Permalink
Add Signal Update Info to the projects section
Browse files Browse the repository at this point in the history
  • Loading branch information
tedgravlin committed Sep 24, 2023
1 parent 8e084b3 commit 257fa54
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 18 deletions.
Binary file added assets/images/signal-update-info.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 21 additions & 7 deletions css/mainStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,11 @@ div.onecolumncardholder {
}

div.threecolumncardholder {
justify-items: center;
margin-top: 10px;
display: inline-grid;
grid-column-gap: 15px;
grid-column-gap: 1em;
grid-row-gap: 15px;
grid-template-columns: auto;
width: auto;
}

div.card {
Expand All @@ -98,7 +97,13 @@ div.card {
box-sizing: border-box;
}

div.projectcard h3, div.projectcard p {
padding: 0 2em 0 2em;
}

div.projectcard {
width: 250px;
height: 250px;
padding: 0em 0em 2.5em 0em;
border: 2px hidden black;
border-radius: 16px;
Expand All @@ -125,7 +130,7 @@ div.cardsection {
grid-template-columns: 1fr 1fr 1fr;
min-width: 0%;
max-width: 100%;
width: 85vw;
width: min-content;
}

div.card {
Expand All @@ -141,17 +146,26 @@ div.cardsection {
min-width: 95%;
max-width: 100%;
}
div.threecolumncardholder {
grid-template-columns: 100%;
min-width: 95%;
max-width: 100%;
}

div.card {
margin: 0px 1em 0px 1em;
width: 90vw;
height: auto;
}

div.projectcard {
margin: 0px 1em 0px 1em;
width: 90vw;
height: auto;
height: fit-content;
padding-bottom: 1em;
}

img.cardheader {
width: 90vw !important;
}
}

Expand Down Expand Up @@ -298,7 +312,7 @@ a:hover.noshow {

/* ---------- Images ---------- */
img.cardheader {
width: 100%;
width: 250px;
border-radius: 16px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
Expand Down
26 changes: 15 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ <h3> Quick Links </h3>
<a class="button" href="mailto:[email protected]">
<input class="uniformsize" type="button" value="Email">
</a>
<a class="button" href="https://signal.me/#p/+13136765972">
<input class="uniformsize" type="button" value="Signal">
</a>
</div>
<div class="card">
<img class="cardicon" src="./assets/images/man-at-computer-emoji.svg">
Expand All @@ -62,21 +59,28 @@ <h3> About Me </h3>
</div>
<!-- Projects -->
<h1 class="divider" id="projects">Projects</h1>
<div class="twocolumncardholder">
<a class="noshow" href="https://whatshouldieat.app/" target="_blank">
<div class="projectcard">
<img class="cardheader" src="./assets/images/What-Should-I-Eat.png">
<h3>What Should I Eat?</h3>
<p>Can't decide what to eat? We'll pick for you.</p>
</div>
</a>
<div class="threecolumncardholder">
<a class="noshow" href="https://tedgravlin.github.io/qr-crypt/" target="_blank">
<div class="projectcard">
<img class="cardheader" src="./assets/images/QR-Crypt.png">
<h3>QR-Crypt</h3>
<p>An encrypted QR Code generator</p>
</div>
</a>
<a class="noshow" href="https://tedgravlin.github.io/signal-update-info/" target="_blank">
<div class="projectcard">
<img class="cardheader" src="./assets/images/signal-update-info.png">
<h3>Signal Update Info</h3>
<p>Signal news and updates</p>
</div>
</a>
<a class="noshow" href="https://whatshouldieat.app/" target="_blank">
<div class="projectcard">
<img class="cardheader" src="./assets/images/What-Should-I-Eat.png">
<h3>What Should I Eat?</h3>
<p>Can't decide what to eat? We'll pick for you.</p>
</div>
</a>
</div>
<!-- Footer -->
<div class="footer">
Expand Down

0 comments on commit 257fa54

Please sign in to comment.