-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b12c34
commit f59cc12
Showing
3 changed files
with
164 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: white; | ||
color: black; | ||
} | ||
a { | ||
text-decoration: none; | ||
} | ||
header { | ||
position: fixed; | ||
width: 100%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
backdrop-filter: blur(10px); | ||
background: rgba(255, 255, 255, 0.6); | ||
z-index: 1000; | ||
} | ||
header img { | ||
height: 24px; | ||
margin-right: 10px; | ||
} | ||
header .logo { | ||
display: flex; | ||
align-items: center; | ||
font-size: 20px; | ||
font-weight: bold; | ||
color: black; | ||
text-decoration: none; | ||
} | ||
.container { | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
} | ||
.app-details { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 20px; | ||
padding-top: 80px; | ||
} | ||
.app-details .content { | ||
max-width: 50%; | ||
} | ||
.app-details h2 { | ||
color: black; | ||
font-size: 32px; | ||
margin-bottom: 10px; | ||
} | ||
.app-details p { | ||
font-size: 16px; | ||
margin-bottom: 20px; | ||
} | ||
.app-details img { | ||
transition: transform 0.3s; | ||
} | ||
.app-details img:hover { | ||
transform: scale(1.05); | ||
} | ||
.app-details .screenshots img { | ||
width: 500px; | ||
height: auto; | ||
border-radius: 10px; | ||
margin: 0 10px; | ||
transition: transform 0.3s; | ||
} | ||
.app-details .screenshots img:hover { | ||
transform: scale(1.05); | ||
} | ||
.features { | ||
padding: 40px 20px; | ||
} | ||
.features h1 { | ||
text-align: center; | ||
margin-bottom: 30px; | ||
} | ||
.features .feature-list { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
gap: 20px; | ||
margin-bottom: 40px; | ||
} | ||
.feature { | ||
padding: 20px; | ||
width: 28%; | ||
border-radius: 15px; | ||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); | ||
transition: transform 0.3s, box-shadow 0.3s, background 0.3s; | ||
} | ||
.feature:hover { | ||
transform: translateY(-5px); | ||
background-color: rgba(204, 49, 61, 0.1); | ||
} | ||
.feature h3 { | ||
margin-bottom: 10px; | ||
} | ||
footer { | ||
display: flex; | ||
justify-content: space-around; | ||
padding: 40px 20px; | ||
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); | ||
} | ||
footer .footer-section { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: flex-start; | ||
gap: 10px; | ||
} | ||
footer a { | ||
text-decoration: none; | ||
color: black; | ||
font-size: 15px; | ||
transition: color 0.3s; | ||
} | ||
footer a:hover { | ||
color: #CC313D; | ||
} | ||
footer img { | ||
width: 150px; | ||
transition: transform 0.3s; | ||
} | ||
footer img:hover { | ||
transform: scale(1.05); | ||
} | ||
@media (max-width: 768px) { | ||
.app-details { | ||
flex-direction: column; | ||
text-align: center; | ||
} | ||
.app-details .content { | ||
max-width: 100%; | ||
margin-bottom: 40px; | ||
} | ||
.features .feature-list .feature { | ||
width: 95%; | ||
} | ||
footer { | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 20px; | ||
} | ||
footer .footer-section { | ||
align-items: center; | ||
} | ||
.app-details .screenshots img { | ||
width: 100%; | ||
} | ||
} | ||
@media (max-width: 480px) { | ||
.features .feature-list .feature { | ||
width: 100%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.