This commit is contained in:
parent
0fed4e2159
commit
d953ce654d
@ -38,11 +38,14 @@
|
|||||||
.hero-button {
|
.hero-button {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
color: #E72E77;
|
color: #E72E77;
|
||||||
padding: 1rem 2rem;
|
padding: 15px 30px;
|
||||||
text-decoration: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
font-size: 1.2rem;
|
font-size: 1.4rem;
|
||||||
transition: background-color 0.3s, color 0.3s;
|
font-weight: bold;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background-color 0.3s;
|
||||||
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-button:hover {
|
.hero-button:hover {
|
||||||
@ -54,33 +57,88 @@
|
|||||||
.hero-screenshots {
|
.hero-screenshots {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 1rem;
|
gap: 3rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.screenshot img {
|
.screenshot img {
|
||||||
max-width: 90%;
|
max-width: 80vmin;
|
||||||
height: auto;
|
height: auto;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
border: 4px solid black;
|
||||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Responsive layout for larger screens */
|
/* Responsive layout for larger screens */
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
.hero-inner {
|
.hero {
|
||||||
flex-direction: row; /* Side-by-side layout on larger screens */
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0 auto; /* Centering the hero section */
|
||||||
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
padding-top: 80px;
|
||||||
|
padding-bottom: 80px;
|
||||||
|
padding-left: 40px;
|
||||||
|
padding-right: 40px;
|
||||||
|
background: linear-gradient(to bottom right, #F9B208, #E72E77);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-inner {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-content {
|
.hero-content {
|
||||||
align-items: flex-start;
|
text-align: center;
|
||||||
text-align: left;
|
padding: 20px;
|
||||||
|
margin-right: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-logo {
|
||||||
|
width: 200px;
|
||||||
|
margin: 0 auto 20px;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-title {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
color: white;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-button:hover {
|
||||||
|
background-color: white;
|
||||||
|
/* color: #2ee797; */
|
||||||
|
color: #ff3988;
|
||||||
|
opacity: 1;
|
||||||
|
box-shadow: 0 0px 16px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-screenshots {
|
.hero-screenshots {
|
||||||
flex-direction: row; /* Display screenshots side-by-side */
|
max-width: 50%;
|
||||||
gap: 1.5rem;
|
display: flex;
|
||||||
|
gap: 40px;
|
||||||
|
margin-left: 0px;
|
||||||
|
padding-left: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.screenshot {
|
||||||
|
width: 100%;
|
||||||
|
height: 330px;
|
||||||
|
background-color: white;
|
||||||
|
border: 5px solid black;
|
||||||
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
|
||||||
|
border-radius: 13px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.screenshot img {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
object-fit: cover;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user