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>
|
||||||
</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>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
42
src/Assets/CSS/App.min.css
vendored
42
src/Assets/CSS/App.min.css
vendored
|
|
@ -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;
|
||||||
|
|
@ -74,4 +74,44 @@
|
||||||
.passgen-text {
|
.passgen-text {
|
||||||
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;
|
||||||
}
|
}
|
||||||
Loading…
Add table
Reference in a new issue