diff --git a/assets/home/conductorcalc-mobile.jpg b/assets/home/conductorcalc-mobile.jpg new file mode 100644 index 0000000..6f58cf9 Binary files /dev/null and b/assets/home/conductorcalc-mobile.jpg differ diff --git a/assets/home/conductorcalc-mobile.xcf b/assets/home/conductorcalc-mobile.xcf new file mode 100644 index 0000000..e1e8f09 Binary files /dev/null and b/assets/home/conductorcalc-mobile.xcf differ diff --git a/assets/home/foss.jpg b/assets/home/foss-mobile.jpg similarity index 100% rename from assets/home/foss.jpg rename to assets/home/foss-mobile.jpg diff --git a/assets/home/musicplayer-mobile.jpg b/assets/home/musicplayer-mobile.jpg new file mode 100644 index 0000000..bba7f86 Binary files /dev/null and b/assets/home/musicplayer-mobile.jpg differ diff --git a/assets/home/musicplayer-mobile.xcf b/assets/home/musicplayer-mobile.xcf new file mode 100644 index 0000000..661c66d Binary files /dev/null and b/assets/home/musicplayer-mobile.xcf differ diff --git a/src/css/style.css b/src/css/style.css index 93396bb..5aec2b3 100644 --- a/src/css/style.css +++ b/src/css/style.css @@ -119,7 +119,7 @@ a { .slider { width: 100vw; - height: 70vh; + height: 80vh; } .slider-element { @@ -262,11 +262,6 @@ a { } @media only screen and (min-width: 800px) { - .slider { - width: 100vw; - height: 80vh; - } - .slider-controls { font-size: 3rem; } diff --git a/src/index.html b/src/index.html index 8a24bfc..39a8333 100644 --- a/src/index.html +++ b/src/index.html @@ -3,8 +3,7 @@ - - + @@ -49,7 +48,7 @@

MusicPlayer

@@ -72,8 +71,7 @@ onclick="sliderControl( 'next' )">arrow_forward
- - + diff --git a/src/projects/index.html b/src/projects/index.html index 7535827..13aa2a1 100644 --- a/src/projects/index.html +++ b/src/projects/index.html @@ -24,14 +24,14 @@ @@ -82,7 +82,10 @@ arrow_forward
- + +

Projects

@@ -104,8 +107,8 @@ Details
- +

MusicPlayer

A browser-based Music Player with remote playlist sharing and support for your local playlists, as well as Apple Music

@@ -114,13 +117,16 @@
- +

impress

-

A JavaScript library to create fancy browser-based presentations in 3D. Not my own project, but one I occasionally contribute to

+

A JavaScript library to create fancy browser-based presentations in 3D. Not my own project, but one I + occasionally contribute to

GitHub
- +

Arch-Dev-VM

Looking for an easy to set up Arch Linux virtual machine for development? The scripts here allow you to set up an Arch Linux Virtual Machine in under 1 hour, of which most time is waiting for downloads @@ -138,7 +144,8 @@ Details

- +

Configurations, etc

Various configuration files I personally use are available on my personal Gitea instance

Git @@ -151,7 +158,8 @@

Apps designed for your phone and tablet

- +

StorageManager

Missing stock keeping in your home storage? Keep throwing food away because it went bad? StorageManager aims to help you with this by providing easy to use tools to keep track of what you @@ -159,7 +167,8 @@ Details

- +

QR & Barcode Insight

QR Codes have become a massive security risk. QR & Barcode Insight helps protect you by showing you the unfiltered content of QR codes as well as the option to check the scanned links with @@ -180,7 +189,8 @@ Details

- +

Store

The way to buy my software and support the development of my open source software

Store @@ -188,14 +198,16 @@
- +

Accounts

Tired of creating lots of accounts? All my services rely on a single account backend, not requiring you to create a new account for each

Account
- +

Language School Hossegor Booking System

A fully featured booking system for a French language school, written from scratch specifically for their purposes with a highly customizable booking process.

@@ -206,13 +218,6 @@
- - - - - diff --git a/src/projects/libreevent/index.html b/src/projects/libreevent/index.html index 3a8f07d..31a12a1 100644 --- a/src/projects/libreevent/index.html +++ b/src/projects/libreevent/index.html @@ -36,6 +36,11 @@ height: 40vw; } } + + .slider { + height: calc(100vw * 11/16); + max-height: 80vh; + } @@ -45,10 +50,6 @@
-

Create Events with Ease

@@ -94,10 +95,11 @@ arrow_forward
-
+ +
- +

libreǝvent

← All projects @@ -123,10 +125,8 @@ - diff --git a/src/projects/musicplayer/index.html b/src/projects/musicplayer/index.html index a43427f..6eac456 100644 --- a/src/projects/musicplayer/index.html +++ b/src/projects/musicplayer/index.html @@ -26,6 +26,13 @@ + + @@ -89,6 +96,8 @@ arrow_forward
+ +
MusicPlayer logo - - - - diff --git a/src/slider-rwd.js b/src/slider-rwd.js index 5107ad5..d5f4ebd 100644 --- a/src/slider-rwd.js +++ b/src/slider-rwd.js @@ -1,6 +1,6 @@ /* eslint-disable no-undef */ const loadImageByScreenSize = () => { - if ( window.innerHeight / window.innerWidth >= 1 ) { + if ( window.innerHeight / window.innerWidth >= 1.2 ) { loadImageType( '-mobile' ); } else { loadImageType( '' );