This commit is contained in:
Joshua Killen 2020-04-17 10:01:08 +01:00
parent 205da87a63
commit b02803ddb9
2 changed files with 20 additions and 19 deletions

View File

@ -53,21 +53,18 @@
<div class="aboutUni">
<h2>The University</h2>
</div>
<div class="aboutMe">
<h2 class="jkillen">Joshua Killen</h2>
<img class="profile" src="about_assets/jkillen.png" alt="Profile of Joshua Killen">
<article>
<details class="bio" open>
<summary class="bioTitle"><b>Bio</b></summary>
<p class="bioContent">Joshua Killen is a Foundation year student at CU Coventry studying Digital Technologies. Interested in computers and physics from a young age, he has been studying the subjects ever since with the hopes of entering a career in cybersecurity.</p>
</details>
</article>
<article>
<h3>Contact Details</h3>
<a href="mailto:killenj@cu.coventry.ac.uk"><u>@:killenj@cu.coventry.ac.uk</u></a>
</article>
</div>
<details class="aboutMe" open>
<summary class="meTitle">Joshua Killen</summary>
<img class="profile" src="about_assets/jkillen.png" alt="Profile of Joshua Killen">
<article>
<b class="aboutTitle">Bio</b>
<p class="aboutContent">Joshua Killen is a Foundation year student at CU Coventry studying Digital Technologies. Interested in computers and physics from a young age, he has been studying the subjects ever since with the hopes of entering a career in cybersecurity.</p>
</article>
<article>
<b class="aboutTitle">Contact Details</h3>
<a class="aboutContent" href="mailto:killenj@cu.coventry.ac.uk"><u>@:killenj@cu.coventry.ac.uk</u></a>
</article>
</details>
<footer>
<div class="footer">
<a class="about" href="../../../about/about.html">About the Website</a><br>

View File

@ -6,15 +6,19 @@
border: 4px solid #f2f2f2;
}
.bio {
.aboutMe {
font-size: 4vw;
}
.bioContent {
article {
font-size: 4vw;
}
.aboutContent {
font-size: 0.25em;
}
.bioTitle {
.aboutTitle {
font-family: neon80;
font-size: 0.5em;
}
}