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"> <div class="aboutUni">
<h2>The University</h2> <h2>The University</h2>
</div> </div>
<div class="aboutMe"> <details class="aboutMe" open>
<h2 class="jkillen">Joshua Killen</h2> <summary class="meTitle">Joshua Killen</summary>
<img class="profile" src="about_assets/jkillen.png" alt="Profile of Joshua Killen"> <img class="profile" src="about_assets/jkillen.png" alt="Profile of Joshua Killen">
<article> <article>
<details class="bio" open> <b class="aboutTitle">Bio</b>
<summary class="bioTitle"><b>Bio</b></summary> <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>
<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>
<article> <article>
<h3>Contact Details</h3> <b class="aboutTitle">Contact Details</h3>
<a href="mailto:killenj@cu.coventry.ac.uk"><u>@:killenj@cu.coventry.ac.uk</u></a> <a class="aboutContent" href="mailto:killenj@cu.coventry.ac.uk"><u>@:killenj@cu.coventry.ac.uk</u></a>
</article> </article>
</div> </details>
<footer> <footer>
<div class="footer"> <div class="footer">
<a class="about" href="../../../about/about.html">About the Website</a><br> <a class="about" href="../../../about/about.html">About the Website</a><br>

View File

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