Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Routes/Home/Home.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@ body, h1, p, a {
max-width: 100%;
overflow: hidden;
animation:
typing 4.5s steps(40, end) forwards,
blink .75s step-end infinite;
typing 2.9s steps(20, end) forwards,
blink .2s step-end infinite;
}

.typewriter p {
color: black;
width: fit-content;
opacity: 0;
animation-duration: 4s, .75s;
animation-duration: 3.2s, .45s;
animation-timing-function: steps(40, end), step-end;
animation-delay: 2s, 3.5s;
animation-delay: 1.2s, 3.5s;
animation-fill-mode: forwards, forwards;
animation-iteration-count: 1, infinite;
margin-bottom: 2vh;
Expand Down
2 changes: 1 addition & 1 deletion src/Routes/Home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function Home() {
<main className="content">
<div className="typewriter">
<h1>Welcome to MM-Code</h1>
<p>Embark on a journey of deep practice with us, overcoming initial challenges to attain coding expertise.</p>
<p>Overcome your initial challenges and attain comfort in coding.</p>
</div>
<div className="button-group">
<button onClick={handleGetStartedClick} className="journey-on-button">
Expand Down