mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-08 13:05:57 +01:00
Add profile pic
This commit is contained in:
parent
b6b09a87cd
commit
bb94c93229
4 changed files with 17 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
<div class="h-card vcard">
|
||||
<img class="profile u-photo " src="profile-512.jpg" />
|
||||
Hello! I'm <em class="u-uid p-name fn always-accented">JP Hastings-Spital</em>, a <span class="p-category category">maker</span>, <span class="p-category category">software engineer</span>, <span class="p-category category">swing dancer</span>, and all-round <span class="p-category category">miriscient chap</span> living in <span class="adr p-adr h-adr"><span class="p-locality locality">London</span>, <span class="p-country-name country-name">UK</span></span>. I'm a <span>principal engineer</a> at <a href="https://deliveroo.engineering/" target="_blank" class="h-card u-url" rel="noopener">Deliveroo</a>.
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
I [write](./posts) on this site infrequently about things I've created or care about. You're welcome to write to me if you'd like, read my [standing invitation](./standing-invitation) for more information.
|
||||
I [post](./posts) on this site infrequently about things I've created or care about. You're welcome to write to me if you'd like, read my [standing invitation](./standing-invitation) for more information.
|
||||
|
|
BIN
static/profile-512.jpg
Normal file
BIN
static/profile-512.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
|
@ -137,6 +137,21 @@ main p a, main li a, nav a, .social a, section a, .accented {
|
|||
transition-timing-function: ease-in;
|
||||
}
|
||||
|
||||
img.profile {
|
||||
float: left;
|
||||
height: 3em;
|
||||
border-radius: 1em;
|
||||
|
||||
filter: grayscale(1);
|
||||
transition-property: color, filter;
|
||||
transition-duration: .2s;
|
||||
transition-timing-function: ease-in;
|
||||
|
||||
&:hover {
|
||||
filter: none;
|
||||
}
|
||||
}
|
||||
|
||||
img, postcard-display {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
|
|
Loading…
Reference in a new issue