Compare commits

..

2 Commits

Author SHA1 Message Date
5cb6da9109 feat: minor site improvements 2025-07-10 17:54:04 +02:00
1afc00ce7a fix: typo fixed in cv 2025-07-10 17:31:31 +02:00
3 changed files with 13 additions and 4 deletions

Binary file not shown.

View File

@@ -83,7 +83,8 @@
<div class="world"> <div class="world">
<!-- <p>Also, checkout <a href="https://scientia.c2yz.com">this site</a>. You might find it interesting. 👀</p> --> <!-- <p>Also, checkout <a href="https://scientia.c2yz.com">this site</a>. You might find it interesting. 👀</p> -->
<p>[📎 <a href="assets/Michał_Czyż_CV.pdf"">cv</a>] [📧 <a href=" mailto:mike@c2yz.com?subject=Hi">contact</a>]</p> <span>[📎 <a href="assets/Michał_Czyż_CV.pdf"">cv</a>]</span>
<span>[📧 <a href=" mailto:mike@c2yz.com?subject=Hi">contact</a>]</span>
<!-- <p>[📧 <a href=" mailto:mike@c2yz.com?subject=Hi">contact</a>]</p> --> <!-- <p>[📧 <a href=" mailto:mike@c2yz.com?subject=Hi">contact</a>]</p> -->
<!-- <span class="separator">. . .</span> --> <!-- <span class="separator">. . .</span> -->

View File

@@ -91,7 +91,7 @@ body {
box-sizing: border-box; box-sizing: border-box;
width: 8.5in; width: 8.5in;
/* height: 11in; */ /* height: 11in; */
height: 8in; height: 9in;
margin-top: 5px; margin-top: 5px;
margin-bottom: 5px; margin-bottom: 5px;
background-color: var(--surface); background-color: var(--surface);
@@ -149,6 +149,8 @@ a:focus {
.world { .world {
grid-area: world; grid-area: world;
display: flex;
gap: 0.5em;
} }
.aside { .aside {
@@ -165,6 +167,7 @@ a:focus {
grid-template-columns: 0.3fr 0.7fr; grid-template-columns: 0.3fr 0.7fr;
column-gap: 0.5in; column-gap: 0.5in;
align-self: end; align-self: end;
margin-top: 1.5em;
} }
.copyright { .copyright {
@@ -352,7 +355,7 @@ a:focus {
box-shadow: none; box-shadow: none;
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
grid-template-rows: 0.85in 0.2fr 0.4fr auto; grid-template-rows: 0.1fr 0.2fr 0.4fr auto;
gap: 0px 0px; gap: 0px 0px;
grid-template-areas: grid-template-areas:
"header" "header"
@@ -364,6 +367,10 @@ a:focus {
overflow: auto; overflow: auto;
} }
.header {
font-size: 2em;
}
.theme:focus, .theme:focus,
.theme:active, .theme:active,
.theme:hover { .theme:hover {
@@ -377,7 +384,8 @@ a:focus {
.bio { .bio {
grid-template-columns: none; grid-template-columns: none;
grid-template-rows: 2.5in 1fr; grid-template-rows: 2.5in 1fr;
place-items: center; justify-content: center;
align-items: center;
padding: 0; padding: 0;
} }