Skip to content

Commit

Permalink
fix: Responsivity for non 1080p displays
Browse files Browse the repository at this point in the history
  • Loading branch information
eternalfrustation committed Apr 7, 2024
1 parent 43f727d commit 4be74d0
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 29 deletions.
Binary file modified 0xProto.woff2
Binary file not shown.
13 changes: 9 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ <h3>
Passionate about
</h3>
<ul>
<li>Learning and tinkering with computers and electronics</li>
<li>Tinkering with Electronics</li>
<li>Tinkering with Computers</li>
<li>Operating Systems</li>
<li>Computer Architecture</li>
<li>Graphics Programming</li>
Expand All @@ -51,9 +52,13 @@ <h3>
Experience
</h3>
<ul>
<li>  Server admin / Backend Developer for Techfest 23</li>
<li>  Server admin / Backend Developer for Techfest 24</li>
<li>  App Dev / Electronics / Website Dev for CycleOne</li>
<li>  Server admin Techfest 23</li>
<li>  Backend Developer Techfest 23</li>
<li>  Server admin Techfest 24</li>
<li>  Backend Developer Techfest 24</li>
<li>  App Dev for CycleOne </li>
<li>  Electronics for CycleOne </li>
<li>  Website for CycleOne </li>

</ul>
</div>
Expand Down
47 changes: 22 additions & 25 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -155,14 +155,9 @@ body>div {
border-radius: 10px;
padding: 10px;
width: 95%;
overflow: scroll;
scrollbar-width: thin;
scrollbar-color: var(--bg-complementary);
background: radial-gradient(circle, var(--bg-square-edge-color) 0%,
var(--bg-square-edge-color) 25%,
transparent 100%),

;
transparent 100%);
transition: background-color 0.7s, transform 0.1s, box-shadow 0.3s;
}

Expand Down Expand Up @@ -215,7 +210,7 @@ body>div:hover::after {
width: 98%;
}

@media screen and (max-width: 600px) {
@media screen and (max-width: 768px) {
body {
grid-template-columns: auto;
}
Expand Down Expand Up @@ -247,46 +242,48 @@ body>div:hover::after {

}

@media only screen and (max-width: 600px) {
#profileInfo_links {
font-size: 0.8em;
}
@media only screen and (max-width: 992px) {

body {
grid-template-columns: auto;
}

:root {
font-size: 0.8em;
}


}

@media only screen and (max-width: 768px) {
@media only screen and (min-width: 992px) {

body {
grid-template-columns: auto auto;

#profileInfo_links {
font-size: 0.8em;
}

}
@media only screen and (min-width: 1200px) {

body {
grid-template-columns: auto;
grid-template-columns: auto auto;

}

}

@media only screen and (max-width: 992px) {
@media only screen and (min-width: 1800px) {

body {
grid-template-columns: auto;
}
grid-template-columns: auto auto auto;

:root {
font-size: 0.8em;
}


}

@media only screen and (min-width: 992px) {
@media only screen and (min-width: 2500px) {

body {
grid-template-columns: auto auto;
grid-template-columns: auto auto auto auto;
font-size: 1.5em;

}

Expand Down

0 comments on commit 4be74d0

Please sign in to comment.