performance enhancers

This commit is contained in:
2025-08-24 16:35:23 -05:00
parent a6aa73bb21
commit 18c291d37a
8 changed files with 20 additions and 13 deletions

View File

@@ -456,6 +456,11 @@ tr {
margin-right: auto; margin-right: auto;
} }
.blinkies {
width: 150px;
height: 20px;
}
#skillstag::after { #skillstag::after {
content: "Click for details..."; content: "Click for details...";
display: block; display: block;
@@ -1037,12 +1042,12 @@ tr {
/* Be sure to uncomment this if we ever stop using jebwin memes */ /* Be sure to uncomment this if we ever stop using jebwin memes */
/* #homeIcon { /* #homeIcon {
content: url("../icons/rasterLogo.png"); content: url("../icons/rasterlogo.png");
} */ } */
.name { .name {
font-size: min(6vw, 2em); font-size: min(6vw, 2em);
background: url("../icons/rasterLogo.png") 0/5rem no-repeat; background: url("../icons/min.rasterLogo.avif") 0/5rem no-repeat;
background-size: contain; background-size: contain;
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 KiB

View File

@@ -46,18 +46,19 @@
rel="stylesheet" rel="stylesheet"
href="{{ url_for('static', filename='css/App.css') }}" href="{{ url_for('static', filename='css/App.css') }}"
/> />
<!--
<link <link
rel="stylesheet" rel="stylesheet"
href="{{ url_for('static', filename='css/checkbox.css') }}" href="{{ url_for('static', filename='css/checkbox.css') }}"
/> />
<!--
<link <link
rel="stylesheet" rel="stylesheet"
href="{{ url_for('static', filename='css/head.css') }}" href="{{ url_for('static', filename='css/head.css') }}"
/></!--> /></!-->
<link rel="canonical" href="{{ var['canonical'] }}" /> <link rel="canonical" href="{{ var['canonical'] }}" />
<script src="{{ url_for('static', filename='js/checkbox.js') }}"></script> <!-- <script src="{{ url_for('static', filename='js/checkbox.js') }}"></script> !-->
<script src="{{ url_for('static', filename='js/responsive.js') }}"></script> <script src="{{ url_for('static', filename='js/responsive.js') }}"></script>
<script src="{{ url_for('static', filename='js/chessbed.js') }}"></script> <script src="{{ url_for('static', filename='js/chessbed.js') }}"></script>
<title>{{ var['title'] }}</title> <title>{{ var['title'] }}</title>

View File

@@ -5,8 +5,9 @@
<div class="flex vertOnMobile"> <div class="flex vertOnMobile">
<div> <div>
<img <img
src="{{ url_for('static', filename='photos/moonWizard.jpeg') }}" src="{{ url_for('static', filename='photos/min.moonWizard.avif') }}"
id="homeIcon" id="homeIcon"
fetchpriority=high
alt="logo" alt="logo"
/> />
</div> </div>
@@ -19,13 +20,13 @@
<div id="nametag" class="flex" data-aos="fade-up">{{ nameplate() }}</div> <div id="nametag" class="flex" data-aos="fade-up">{{ nameplate() }}</div>
<!--<INSERT SMALL BANNER HERE FOR PROJECT IMAGECARD CAROUSEL>--> <!--<INSERT SMALL BANNER HERE FOR PROJECT IMAGECARD CAROUSEL>-->
<div id="desktopSpacer"></div> <div id="desktopSpacer"></div>
<div class="homeSubContent blinkies"> <div class="homeSubContent">
<img alt='My Brain is Glowing' src="{{ url_for('static', filename='photos/blinkies/brainglow.gif') }}" /> <img class='blinkies' alt='My Brain is Glowing' src="{{ url_for('static', filename='photos/blinkies/brainglow.gif') }}" />
<img alt='Pepsi Addict' src="{{ url_for('static', filename='photos/blinkies/pepsiaddict.gif') }}" /> <img class='blinkies' alt='Pepsi Addict' src="{{ url_for('static', filename='photos/blinkies/pepsiaddict.gif') }}" />
<img alt='I Fear No Beer' src="{{ url_for('static', filename='photos/blinkies/fearnobeer.gif') }}" /> <img class='blinkies' alt='I Fear No Beer' src="{{ url_for('static', filename='photos/blinkies/fearnobeer.gif') }}" />
<img alt='Secret Message' src="{{ url_for('static', filename='photos/blinkies/tooclose.gif') }}" /> <img class='blinkies' alt='Secret Message' src="{{ url_for('static', filename='photos/blinkies/tooclose.gif') }}" />
<img alt="They took my blood but it wasn't DNA, it was USA" src="{{ url_for('static', filename='photos/blinkies/usa.gif') }}" /> <img class='blinkies' alt="They took my blood but it wasn't DNA, it was USA" src="{{ url_for('static', filename='photos/blinkies/usa.gif') }}" />
<img alt='Bob the Builder gif' src="{{ url_for('static', filename='photos/blinkies/bobthebuilder.gif') }}" /> <img class='blinkies' alt='Bob the Builder gif' src="{{ url_for('static', filename='photos/blinkies/bobthebuilder.gif') }}" />
<div> <div>
<h3>Now What?</h3> <h3>Now What?</h3>
<p> <p>

View File

@@ -35,7 +35,7 @@
</div> </div>
<div class="bottomtext">Chess.com Stat Embed by Andrew Simonson</div> <div class="bottomtext">Chess.com Stat Embed by Andrew Simonson</div>
</div> </div>
<script> <script defer>
addChessEmbed("{{ username }}"); addChessEmbed("{{ username }}");
</script> </script>
{%- endmacro %} {%- endmacro %}