Add avatar

This commit closes issue #45.
This commit is contained in:
inference 2024-02-20 13:07:27 +00:00
parent eaf71de088
commit 84637f85b4
Signed by: inference
SSH Key Fingerprint: SHA256:FtEVfx1CmTKMy40VwZvF4k+3TC+QhCWy+EmPRg50Nnc
3 changed files with 20 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<!-- Inferencium - Website - About --> <!-- Inferencium - Website - About -->
<!-- Version: 9.0.0 --> <!-- Version: 9.1.0-alpha.1 -->
<!-- Copyright 2022 Jake Winters --> <!-- Copyright 2022 Jake Winters -->
<!-- SPDX-License-Identifier: BSD-3-Clause --> <!-- SPDX-License-Identifier: BSD-3-Clause -->
@ -87,6 +87,7 @@
</nav> </nav>
<section id="about_me"> <section id="about_me">
<h2><a href="#about_me">About Me</a></h2> <h2><a href="#about_me">About Me</a></h2>
<img class="avatar" src="asset/img/avatar/inference.png" alt="My avatar."/>
<p>I am Jake Winters, also known by my pseudonym <p>I am Jake Winters, also known by my pseudonym
"Inference", a security researcher based in United "Inference", a security researcher based in United
Kingdom.</p> Kingdom.</p>

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -1,5 +1,5 @@
/* Inferencium - Website - CSS - Main */ /* Inferencium - Website - CSS - Main */
/* Version: 11.5.0 */ /* Version: 11.6.0-alpha.1 */
/* Copyright 2022 Jake Winters */ /* Copyright 2022 Jake Winters */
/* SPDX-License-Identifier: BSD-3-Clause */ /* SPDX-License-Identifier: BSD-3-Clause */
@ -203,6 +203,14 @@ td.red {
/* Image */ /* Image */
img.avatar {
width: 10%;
height: 10%;
margin-top: 15px;
margin-right: 15px;
margin-bottom: 15px;
}
img.logo-small { img.logo-small {
transform: translate(0px, 13px); transform: translate(0px, 13px);
margin-right: 15px; margin-right: 15px;
@ -276,7 +284,7 @@ strong {
display: inline-block; display: inline-block;
} }
nav.navbar img, nav.navbar .title { nav.navbar img, nav.navbar .title {
display: none; display: none;
} }
@ -303,4 +311,12 @@ strong {
.update_date { .update_date {
text-align: center; text-align: center;
} }
img.avatar {
display: block;
width: 30%;
margin-right: auto;
margin-left: auto;
}
} }