Skip to content

Commit

Permalink
About Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Programmer-RD-AI committed Aug 5, 2024
1 parent 7ca3f80 commit 89f8ac3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 21 deletions.
31 changes: 11 additions & 20 deletions src/assets/styles/pages/layouts/About.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,25 +53,24 @@
}

.title-text {
font-size: 4rem;
font-size: 9rem; /* Increased font size */
font-family: 'SF Pro Display', sans-serif;
font-weight: bold;


@media (min-width: 640px) {
font-size: 4rem;
font-size: 9rem;
}

@media (min-width: 768px) {
font-size: 5rem;
font-size: 9rem;
}

@media (min-width: 1024px) {
font-size: 5rem;
font-size: 9rem;
}

@media (min-width: 1280px) {
font-size: 5rem;
font-size:9rem;
}

color: white;
Expand Down Expand Up @@ -103,37 +102,29 @@

/* Responsive Adjustments */
@media (max-width: 768px) {

.title-text {
font-size: 3rem;
/* Increased font size for mobile */
font-size: 5rem; /* Increased font size for mobile */
}

.top-24 {
top: 8rem;
/* Adjusted to create more space below the title */
top: 8rem; /* Adjusted to create more space below the title */
}

.bottom-24 {
bottom: 8rem;
/* Adjusted to create more space above the bottom of the screen */
bottom: 8rem; /* Adjusted to create more space above the bottom of the screen */
}

.content-text {
font-size: 1.125rem;
/* Increased font size for better readability on mobile */
font-size: 1.125rem; /* Increased font size for better readability on mobile */
}

.mobile-text {
padding: 1.5rem;
/* Adjust padding for mobile */
padding: 1.5rem; /* Adjust padding for mobile */
/* Semi-transparent background for better readability */
/* Rounded corners */
backdrop-filter: blur(10px);
/* Apply blur effect */
backdrop-filter: blur(10px); /* Apply blur effect */
}


.text-left,
.text-right {
text-align: center;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/layouts/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const About = () => {
animate={{ opacity: 1, scale: 1 }}
transition={{ duration: 1, delay: 0.5 }}
>
What is MicroMaze?
<h1> What is MicroMaze?</h1>
</motion.p>
</motion.div>

Expand Down

0 comments on commit 89f8ac3

Please sign in to comment.