Added Footer
This commit is contained in:
parent
c0bae65c80
commit
ff0d284735
4 changed files with 28379 additions and 1 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
node_modules
|
||||
package-lock
|
||||
28332
package-lock.json
generated
Normal file
28332
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -181,6 +181,10 @@ function App() {
|
|||
/>
|
||||
</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>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
42
src/Assets/CSS/App.min.css
vendored
42
src/Assets/CSS/App.min.css
vendored
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
.copy__btn {
|
||||
position: absolute;
|
||||
background-color: #3b3b98;
|
||||
/* background-color: #3b3b98; */
|
||||
color: white;
|
||||
border: none;
|
||||
height: 40px;
|
||||
|
|
@ -75,3 +75,43 @@
|
|||
font-family: 'Abril Fatface', display;
|
||||
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;
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue