waifuism.life
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
waifuism/home/styles.css

69 lines
1.3 KiB

5 months ago
body, html {
max-height: 100vh;
max-width: 100%;
5 months ago
display: flex;
justify-content: center;
align-items: center;
}
5 months ago
#menu {
5 months ago
5 months ago
background-size: contain;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
5 months ago
max-width: 100%;
height: auto;
transition: transform 0.3s, scale 0.3s;
5 months ago
}
#title{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
5 months ago
p{
color: dodgerblue;
align-self: center;
border: 4px dashed dodgerblue;
background-color: white;
margin-right: 40px;
margin-left: 40px;
}
#logo{
align-self: center;
justify-content: flex-start;
}
.seed {
display: block;
5 months ago
margin-bottom: 90px; /* Adjust the spacing between seeds as needed */
5 months ago
}
.seed img {
transition: transform 0.3s ease;
}
.seed img:hover {
transform: scale(1.1);
5 months ago
}
#image-container {
transition: opacity 0.5s ease; /* Fade transition */
}
5 months ago
@keyframes wiggle {
0% { transform: rotate(0deg); }
25% { transform: rotate(10deg); }
50% { transform: rotate(-10deg); }
75% { transform: rotate(10deg); }
100% { transform: rotate(0deg); }
}
#melon {
animation: wiggle 2s ease infinite; /* Adjust duration and timing function for desired effect */
}