initial commit

This commit is contained in:
2024-04-26 16:10:21 +02:00
commit f38f4ac5cf
12 changed files with 263 additions and 0 deletions

44
css/Card Pokemon.css Normal file
View File

@ -0,0 +1,44 @@
*,
::before
::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: url("../img/background_pokemon.jpg");
background-color: red;
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.card{
width: 350px;
height: 500px;
perspective: 1000px;
}
.content-card{
width: 100%;
height: 100%;
overflow: hidden;
border-radius: 25px;
transition: all 0.25s ease-out;
}
.glow{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: all 0.25s ease-out;
border-radius: 25px;
mix-blend-mode: hard-light;
background: radial-gradient(circle at 50% 0%, rgba(31, 34, 37, 0.014), transparent );
}

44
css/Card football.css Normal file
View File

@ -0,0 +1,44 @@
*,
::before
::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: url('../img/background.jpg');
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.card{
width: 350px;
height: 500px;
perspective: 1000px;
}
.content-card{
width: 100%;
height: 100%;
overflow: hidden;
border-radius: 25px;
transition: all 0.25s ease-out;
}
.glow{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: all 0.25s ease-out;
border-radius: 25px;
mix-blend-mode: hard-light;
background: radial-gradient(circle at 50% 0%, rgba(31, 34, 37, 0.014), transparent );
}

44
css/style.css Normal file
View File

@ -0,0 +1,44 @@
*,
::before
::after{
margin: 0;
padding: 0;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.card {
width: 300px;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
margin: 10px;
}
.image{
height: 250px;
width: 200px;
}
.img{
height: 269px;
width: 219px;
}
.button {
display: inline-block;
background-color: #007bff;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 4px;
margin-top: 12px;
}