Restyle website

This commit is contained in:
2026-07-11 03:19:42 +02:00
parent c567e5edac
commit dc68d20a85
2 changed files with 148 additions and 79 deletions
+137 -59
View File
@@ -1,82 +1,160 @@
/* Variables pour les couleurs */
:root {
--bg-color: #050b16;
--deep-blue: #0a192f;
--glass-light: rgba(255, 255, 255, 0.08);
--glass-border: rgba(255, 255, 255, 0.25);
--accent-yellow: #fcd53f; /* Jaune plus lumineux */
--accent-blue: #3ecaf8; /* Bleu plus lumineux pour les bordures */
}
body { body {
font-family: 'Noto Sans', sans-serif; font-family: 'Noto Sans', sans-serif;
background-color: #333; background-color: var(--bg-color);
color: #fff; /* Arrière-plan complexe pour rendre la réfraction visible */
} background-image:
.container { radial-gradient(at 10% 10%, rgba(10, 25, 47, 0.8) 0px, transparent 50%),
width: 80%; radial-gradient(at 90% 90%, rgba(62, 202, 248, 0.15) 0px, transparent 50%),
margin: auto; linear-gradient(135deg, #050b16 0%, #1a3c6f 100%);
border: 2px solid #2ecccc; color: #e6f1ff;
border-radius: 25px; min-height: 100vh;
margin: 0;
padding: 20px; padding: 20px;
background-color: #444;
} }
/* Style de base pour tous les éléments "verre" */
.glass-effect {
background: var(--glass-light);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-radius: 30px; /* Bords plus adoucis */
border: 1px solid var(--glass-border);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
position: relative;
z-index: 1;
overflow: hidden;
}
/* Le cœur de la réfraction : un pseudo-élément qui déforme l'arrière-plan */
.glass-effect::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
/* Copie l'arrière-plan de la page */
background: inherit;
/* Applique un filtre de distorsion (ici une légère ondulation) */
filter: blur(5px) brightness(1.1) contrast(0.9);
/* Décale légèrement le contenu pour l'effet de réfraction */
transform: scale(1.05) translate(-2px, -2px);
z-index: -1;
border-radius: inherit;
}
/* Application du style aux conteneurs */
.container, div.footer, .video-container {
@extend .glass-effect; /* Si vous utilisez SASS, sinon copier les propriétés */
/* Propriétés copiées pour le rendu final : */
background: rgba(10, 25, 47, 0.08);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-radius: 30px;
border: 1px solid rgba(255, 255, 255, 0.25);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
position: relative;
z-index: 1;
overflow: hidden;
width: 80%;
margin: 40px auto; /* Espacement augmenté */
padding: 40px;
}
.container::before, div.footer::before, .video-container::before {
/* Pseudo-élément de réfraction appliqué */
content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
background: inherit; filter: blur(5px) brightness(1.1) contrast(0.9);
transform: scale(1.05) translate(-2px, -2px); z-index: -1; border-radius: inherit;
}
/* Cas spécifique pour la vidéo (pas de padding-bottom, on fixe la taille) */
.video-container {
padding: 0;
height: 0;
padding-bottom: 56.25%;
}
.video-container iframe {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
border: none; /* Suppression de la bordure de l'iframe */
}
/* Navigation : Style Bouton Liquide 3D */
.nav a { .nav a {
text-decoration: none; text-decoration: none;
color: #fff; color: #fff;
padding: 10px 20px; padding: 15px 35px;
border: 2px solid #2ecccc; margin: 0 10px;
border-radius: 25px;
background-color: #333; /* Bordure déformée et animée (technique border-image) */
transition: all 0.3s ease-in-out; border: 4px solid transparent;
border-image: repeating-linear-gradient(45deg, var(--accent-yellow) 0%, var(--accent-blue) 10%, var(--accent-yellow) 20%) 1;
border-radius: 50px; /* Forme pilule */
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
/* Effet de biseau interne pour le côté 3D */
box-shadow:
inset 0 2px 0 rgba(255, 255, 255, 0.3),
inset 0 -2px 0 rgba(0, 0, 0, 0.2),
0 5px 15px rgba(0, 0, 0, 0.3);
transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
font-weight: 600;
display: inline-block;
} }
.nav a:hover { .nav a:hover {
background-color: #2ecccc; /* Au survol : le bouton s'illumine et la bordure "coule" plus vite */
color: #333; background-color: var(--accent-yellow);
color: var(--deep-blue);
border-color: transparent; /* Cache la bordure d'origine */
box-shadow:
0 0 30px var(--accent-yellow), /* Glow externe */
inset 0 0 10px rgba(255, 255, 255, 0.5); /* Highlight interne */
transform: translateY(-3px); /* Lévitation */
cursor: pointer; cursor: pointer;
transition: all 0.3s ease-in-out;
} }
.video-container { header { text-align: left; margin-bottom: 40px; }
margin: 20px auto;
border: 2px solid #2ecccc;
border-radius: 25px;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
}
header {
text-align: left;
}
.logo { .logo {
height: 60px; height: 60px; width: 60px;
width: 60px; display: inline-block; vertical-align: middle; margin-right: 20px;
display: inline-block; /* Le logo est lui-même un élément de verre */
vertical-align: middle; @extend .glass-effect;
margin-right: 10px; padding: 5px;
border-radius: 15px;
} }
.title { .title {
display: inline-block; display: inline-block; font-size: 56px; line-height: 60px; vertical-align: middle;
font-size: 48px; color: #fff; font-weight: 800;
line-height: 60px; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
vertical-align: middle;
}
div.footer {
width: 80%;
margin: auto;
border: 2px solid #2ecccc;
border-radius: 25px;
padding: 20px;
background-color: #444;
display: flex;
justify-content: center;
align-items: center;
} }
/* Image Flash : Effet de zoom avec ombre colorée */
img.flash { img.flash {
display: inline-block; display: inline-block;
width: 128px; width: 128px;
transition: 0.4s; transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}; border-radius: 15px;
filter: drop-shadow(0 0 0px var(--accent-yellow));
}
img.flash:hover { img.flash:hover {
transition: 0.4s; width: 800px;
width: 800px /* L'ombre devient un halo lumineux lors de l'agrandissement */
}; filter: drop-shadow(0 10px 30px var(--accent-yellow));
}
+11 -20
View File
@@ -4,7 +4,7 @@
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet"> <link href="css/style.css" rel="stylesheet">
<link rel="icon" href="img/logo.png"> <link rel="icon" href="img/logo.png">
<title>Whykioh.fr</title> <title>Whykioh.fr - Mon Portefolio</title>
</head> </head>
<body> <body>
<div class="container"> <div class="container">
@@ -12,36 +12,27 @@
<a href="https://www.youtube.com/@whykioh" target="_blank"> <a href="https://www.youtube.com/@whykioh" target="_blank">
<img class="logo" src="img/logo.png" alt="Logo"> <img class="logo" src="img/logo.png" alt="Logo">
</a> </a>
<h1 class="title">WhyKorp</h1> <h1 class="title">Whykioh.fr</h1>
</header> </header>
<div class="nav"> <div class="nav">
<a href="#">Accueil</a> <a href="https://ko-fi.com/whykioh" target="_blank">Ko-Fi</a>
<a href="infos/index.php">Infos</a> <a href="https://watchgether.whykioh.fr" target="_blank">WatchGether</a>
<a href="https://artists.magroove.com/en/lt/whykioh/" target="_blank">Link Tree</a> <a href="https://gamel0ver.whykioh.fr" target="_blank">GameL0ver</a>
<a href="tools/index.html">Outils</a> <a href="https://vod.whykioh.fr" target="_blank">Jellyfin</a>
<a href="ruty/index.php">Ruty</a> <a href="https://voj.whykioh.fr" target="_blank">Viens On Jette</a>
<a href="lolivator/index.php">LoLivator</a>
<a href="jpc/index.html">JPC</a>
<a href="archives/index.php">Archives</a>
</div> </div>
<p><br></p> <p><br></p>
<hr> <hr>
<h1>Bienvenue sur le site officiel de la WhyKorp !</h1> <h1>Bienvenue Whykioh.fr !</h1>
<p>Vous y trouverez tout sur Whykioh aka Noah, et la WhyKorp.<br>Attention ! Site en cours de développement !<br>Si un disfonctionnement est trouvé veuillez le signaler.</p> <p>Le centre de tous mes projets webs, applications, et autres.<br>N'hésitez pas à explorer ! Mais aussi à me soutenir via un avis, ou un don.</p>
<hr>
<h1>Flash Info !</h1>
<div class="flash">
<p class="flash">Noah a enfin terminé l'EP 4 Elements, <br>il sera disponible sur toutes les plateformes <br>le 25 Décembre 2023</p>
<img class="flash" src="img/last cover.png">
</div>
<hr> <hr>
<h1>Voici la dernière vidéo de <a href="https://www.youtube.com/@whykioh">Whykioh</a> :</h1> <h1>Voici la dernière vidéo de <a href="https://www.youtube.com/@whykioh">Whykioh</a> :</h1>
<div class="video-container"> <div class="video-container">
<iframe width="557,55" height="315" src="https://www.youtube.com/embed/-ZPjXjvdZFc?si=ldsNogAHy636GnzU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> <iframe width="560" height="315" src="https://www.youtube.com/embed/q1rJG0Ue3d0?si=maK0gmAaMX2IDL67" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div> </div>
</div> </div>
<div class="footer"> <div class="footer">
Copyright | Whykorp® 2021-2024 | ajoute le nom du site après l'url et un / Copyright | Whykioh® 2021-2026 | CIBOT NOËL Noah | <a href="https://ko-fi.com/whykioh" target="_blank">Ko-fi</a>
</div> </div>
</body> </body>
</html> </html>