-
Notifications
You must be signed in to change notification settings - Fork 119
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
407a8ad
commit c2fa0de
Showing
5 changed files
with
333 additions
and
69 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
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 |
---|---|---|
@@ -1,83 +1,96 @@ | ||
.footer { | ||
background: #19162c; | ||
color: #ffffff; | ||
padding: 20px 0; | ||
text-align: center; | ||
} | ||
|
||
.footer-content { | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 0 20px; | ||
} | ||
|
||
.footer p { | ||
margin: 0; | ||
} | ||
|
||
.footer-links { | ||
list-style: none; | ||
padding: 0; | ||
margin: 10px 0 0; | ||
display: flex; | ||
justify-content: center; | ||
gap: 15px; | ||
} | ||
|
||
.footer-links li { | ||
display: inline; | ||
} | ||
|
||
.footer-links a { | ||
color: #ffffff; | ||
text-decoration: none; | ||
transition: color 0.3s; | ||
} | ||
|
||
.footer-links a:hover { | ||
color: #00ffff; | ||
} | ||
|
||
.footer-content { | ||
position: relative; | ||
} | ||
|
||
.back-to-top { | ||
margin-top: 40px; | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
color: #ffffff; | ||
} | ||
background: #19162c; | ||
color: #ffffff; | ||
padding: 20px 0; | ||
text-align: center; | ||
} | ||
|
||
.footer-content { | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 0 20px; | ||
} | ||
|
||
.footer p { | ||
margin: 0; | ||
} | ||
|
||
.footer-links { | ||
list-style: none; | ||
padding: 0; | ||
margin: 10px 0 0; | ||
display: flex; | ||
justify-content: center; | ||
gap: 25px; | ||
} | ||
|
||
.footer-links li { | ||
display: inline; | ||
} | ||
|
||
.back-to-top { | ||
text-decoration: none; | ||
font-size: 14px; | ||
font-weight: bold; | ||
color: #d1d0d5; | ||
border: 2px solid #443b78; | ||
padding: 5px 15px; | ||
border-radius: 10px; | ||
margin: 0px 5px; | ||
transition: background-color 0.3s ease; | ||
} | ||
|
||
.back-to-top:hover { | ||
background-color: #443b78; | ||
} | ||
a{ | ||
.footer-links a { | ||
color: #ffffff; | ||
text-decoration: none; | ||
transition: color 0.3s; | ||
} | ||
.icons{ | ||
|
||
.footer-links a:hover { | ||
color: #00ffff; | ||
} | ||
|
||
.footer-content { | ||
position: relative; | ||
} | ||
|
||
.back-to-top { | ||
margin-top: 40px; | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
color: #ffffff; | ||
} | ||
|
||
.back-to-top { | ||
text-decoration: none; | ||
font-size: 14px; | ||
font-weight: bold; | ||
color: #d1d0d5; | ||
border: 2px solid #443b78; | ||
padding: 5px 15px; | ||
border-radius: 10px; | ||
margin: 0px 5px; | ||
transition: background-color 0.3s ease; | ||
} | ||
|
||
.back-to-top:hover { | ||
background-color: #443b78; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
.icons { | ||
display: flex; | ||
justify-content: center; | ||
gap: 20px; | ||
font-size: 20px; | ||
} | ||
.icons a{ | ||
|
||
.icons a { | ||
color: #ffffff; | ||
transition: color 0.3s; | ||
} | ||
.icons a:hover{ | ||
|
||
.icons a:hover { | ||
color: #00ffff; | ||
} | ||
|
||
#pro { | ||
background-color: #ff21bc; | ||
border-radius: 10px; | ||
width: 80px; | ||
text-align: center; | ||
font-style: oblique; | ||
font-weight: bold; | ||
} |
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
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,176 @@ | ||
* { | ||
color: white; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | ||
background-color: #0d0d0d; | ||
} | ||
|
||
.header { | ||
margin: auto; | ||
padding: 20px; | ||
opacity: 0; | ||
animation: fadeIn 1.5s ease-in-out forwards; | ||
} | ||
|
||
.headingHeader { | ||
text-align: center; | ||
font-size: 4vw; | ||
letter-spacing: 2px; | ||
margin-bottom: 14px; | ||
margin-top: 50px; | ||
} | ||
|
||
.headingHeader:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.description { | ||
text-align: center; | ||
font-size: 1.2vw; | ||
margin-bottom: 60px; | ||
} | ||
|
||
.cards_price { | ||
margin: auto; | ||
width: 90vw; | ||
display: grid; | ||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | ||
gap: 20px; | ||
margin-bottom: 75px; | ||
opacity: 0; | ||
animation: fadeIn 2s ease-in-out forwards; | ||
animation-delay: 1s; | ||
} | ||
|
||
.topic_head, .topic_description, .topic_price, .topic_features { | ||
font-size: 22px; | ||
margin: 30px; | ||
} | ||
|
||
.topic_description, .topic_features { | ||
font-size: 16px; | ||
text-align: justify; | ||
} | ||
|
||
li { | ||
list-style: none; | ||
} | ||
|
||
.topic_features { | ||
line-height: 2; | ||
} | ||
|
||
.price1, .price2 { | ||
background-color: #1a1736; | ||
border-radius: 50px; | ||
padding: 20px; | ||
transform: translateY(50px); | ||
opacity: 0; | ||
animation: slideUp 1s ease-in-out forwards; | ||
animation-delay: 1.5s; | ||
} | ||
|
||
.price2 { | ||
outline: 3px solid #ff21bc; | ||
} | ||
|
||
.topic_head { | ||
font-weight: bold; | ||
font-size: 25px; | ||
display: flex; | ||
gap: 15px; | ||
} | ||
|
||
.topic_price { | ||
font-weight: bolder; | ||
font-size: 30px; | ||
} | ||
|
||
.prev { | ||
font-weight: bold; | ||
} | ||
|
||
.free_trial { | ||
margin-top: 25px; | ||
border-radius: 20px; | ||
font-weight: bold; | ||
font-size: 19px; | ||
padding: 10px 20px; | ||
display: block; | ||
width: 80%; | ||
margin: 25px auto 0 auto; | ||
text-align: center; | ||
} | ||
|
||
.Pro { | ||
background-color: #ff21bc; | ||
border-radius: 10px; | ||
width: 50px; | ||
text-align: center; | ||
font-style: oblique; | ||
} | ||
|
||
/* Media Queries for Responsive Design */ | ||
@media (max-width: 768px) { | ||
.headingHeader { | ||
font-size: 8vw; | ||
} | ||
|
||
.description { | ||
font-size: 4vw; | ||
} | ||
|
||
.topic_head, .topic_description, .topic_price, .topic_features { | ||
font-size: 4vw; | ||
margin: 15px; | ||
} | ||
|
||
.topic_price { | ||
font-size: 5vw; | ||
} | ||
|
||
.price1, .price2 { | ||
padding: 10px; | ||
} | ||
} | ||
|
||
@media (max-width: 480px) { | ||
.headingHeader { | ||
font-size: 10vw; | ||
} | ||
|
||
.description { | ||
font-size: 5vw; | ||
} | ||
|
||
.topic_head, .topic_description, .topic_price, .topic_features { | ||
font-size: 5vw; | ||
margin: 10px; | ||
} | ||
|
||
.topic_price { | ||
font-size: 6vw; | ||
} | ||
|
||
.price1, .price2 { | ||
padding: 5px; | ||
} | ||
} | ||
|
||
/* Animation Keyframes */ | ||
@keyframes fadeIn { | ||
to { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes slideUp { | ||
to { | ||
transform: translateY(0); | ||
opacity: 1; | ||
} | ||
} |
Oops, something went wrong.