Added Footer

This commit is contained in:
DIVISIONSolar 2023-03-11 18:46:28 -05:00
parent c0bae65c80
commit ff0d284735
4 changed files with 28379 additions and 1 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
node_modules
package-lock

28332
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -181,6 +181,10 @@ function App() {
/> />
</div> </div>
</div> </div>
<footer className="footer">
<h1 className="title">Built by: <a href='https://joshsevero.dev'>Josh Severo</a></h1>
<p className="subtitle">Open Source on: <a href='https://github.com/DIVISIONSolar/Password-Generator-v2'>Github</a></p>
</footer>
</div> </div>
) )
} }

View file

@ -39,7 +39,7 @@
.copy__btn { .copy__btn {
position: absolute; position: absolute;
background-color: #3b3b98; /* background-color: #3b3b98; */
color: white; color: white;
border: none; border: none;
height: 40px; height: 40px;
@ -75,3 +75,43 @@
font-family: 'Abril Fatface', display; font-family: 'Abril Fatface', display;
font-family: 'Rubik', sans-serif; font-family: 'Rubik', sans-serif;
} }
a:link {
color: white;
}
a:visited {
color: white;
}
a:hover {
color: white;
}
a:active {
color: white;
}
a:link, a:visited {
text-decoration: none;
}
a:hover, a:active {
text-decoration: underline;
}
footer .title {
margin-top: 40px;
text-align: center;
color: #0b0f19;
font-family: 'Abril Fatface', display;
font-family: 'Rubik', sans-serif;
}
footer .subtitle {
margin-top: 4px;
text-align: center;
color: #0b0f19;
font-family: 'Abril Fatface', display;
font-family: 'Rubik', sans-serif;
}