Dateien hochladen nach „“

This commit is contained in:
M_Viper 2023-11-01 15:52:36 +01:00
parent b5d620a2f3
commit e207ff7132
4 changed files with 159 additions and 0 deletions

BIN
IRIDIUM.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1016 KiB

23
index.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Iridum Gaming Comunity</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="card">
<div class="circle" style="--clr: #147020;">
<img src="iridium_logo.png" class="logo">
</div>
<div class="content">
<h2>Iridium-Gaming</h2>
<p>Iridium Gaming ist eine Gelegenheits-PC-Gaming-Community für jedes Alter.
Wir heißen alle Willkommen, die eine entspannte Einstellung haben und hier sind,
um Spaß zu haben.</p>
<a href="https://iridium-gaming.de">Entdecke mehr</a>
</div>
<img src="IRIDIUM.png" class="product_img">
</div>
</body>
</html>

BIN
iridium_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 KiB

136
style.css Normal file
View File

@ -0,0 +1,136 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body
{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #151515;
}
.card
{
position: relative;
width: 350px;
height: 350px;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
transition: 0.5s;
transition-delay: 0.5s;
}
.card:hover
{
width: 600px;
transition-delay: 0.5s;
}
.card .circle
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.card .circle::before
{
content: '';
position: absolute;
top: 0;
left: 0;
width: 350px;
height: 350px;
border-radius: 50%;
background:#191919;
border: 8px solid var(--clr);
filter: drop-shadow(0 0 10px var(--clr)) drop-shadow(0 0 60px var(--clr));
transition: 0.5s, background 0.5s;
transition-delay: 0.75s,1s;
}
.card:hover .circle::before
{
transition-delay: 0.5s;
width: 100%;
height: 100%;
border-radius: 20px;
background: var(--clr);
}
.card .circle .logo
{
position: relative;
width: 300px;
transition-delay: 0.5s;
}
.card:hover .circle .logo
{
transform: scale(0);
transition-delay: 0s;
}
.card .product_img
{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0)rotate(315deg);
height: 300px;
transition: 0.5s ease-in-out;
}
.card:hover .product_img
{
transition-delay: 0.75s;
top: 35%;
left: 72%;
height: 400px;
transform: translate(-50%, -50%) scale(1)rotate(15deg);
}
.card .content
{
position: absolute;
width: 50%;
left: 20%;
padding: 20px 20px 20px 40px;
opacity: 0;
transition: 0.5s;
visibility: hidden;
}
.card:hover .content
{
transition-delay: 0.75s;
opacity: 1;
visibility: visible;
left: 0;
}
.card .content h2
{
color: #fff;
text-transform: uppercase;
font-size: 1.5em;
line-height: 1em;
}
.card .content p
{
color: #fff;
}
.card .content a
{
position: relative;
color: #111;
background: #fff;
padding: 10px 20px;
border-radius: 10px;
display: inline-block;
text-decoration: none;
font-weight: 600;
margin-top: 10px;
}