SEO changes
This commit is contained in:
parent
0827814120
commit
a2594b3683
2 changed files with 109 additions and 25 deletions
44
index.css
44
index.css
|
|
@ -1,4 +1,13 @@
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');
|
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');
|
||||||
|
@import url('https://unpkg.com/@fortawesome/fontawesome-free@5.15.4/css/all.min.css');
|
||||||
|
@keyframes fadeInAnimation {
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: Roboto;
|
font-family: Roboto;
|
||||||
|
|
@ -10,6 +19,13 @@ body {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
animation: fadeInAnimation ease-in-out 0.3s;
|
||||||
|
animation-iteration-count: 1;
|
||||||
|
animation-fill-mode: forwards;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa-magnifying-glass {
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo-wrapper {
|
.logo-wrapper {
|
||||||
|
|
@ -17,7 +33,7 @@ body {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin-top: 13%;
|
margin-top: 10%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
|
|
@ -30,6 +46,10 @@ body {
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logo-wrapper h1 {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
width: 93%;
|
width: 93%;
|
||||||
|
|
@ -40,7 +60,8 @@ footer {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer a , footer span {
|
footer a,
|
||||||
|
footer span {
|
||||||
margin: 0 15px;
|
margin: 0 15px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
|
|
@ -51,7 +72,6 @@ footer a {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
footer a:hover {
|
footer a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
@ -61,6 +81,16 @@ form {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.desc {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.desc p {
|
||||||
|
width: 560px;
|
||||||
|
color: rgba(253, 253, 253, 0.514);
|
||||||
|
}
|
||||||
|
|
||||||
form input {
|
form input {
|
||||||
background: none;
|
background: none;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
|
|
@ -75,3 +105,11 @@ form input {
|
||||||
border-radius: 50px;
|
border-radius: 50px;
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
form input:focus {
|
||||||
|
border: 1px solid rgba(253, 253, 253, 0.514);
|
||||||
|
border-radius: 6px;
|
||||||
|
animation: fadeInAnimation ease-in-out 0.3s;
|
||||||
|
animation-iteration-count: 1;
|
||||||
|
animation-fill-mode: forwards;
|
||||||
|
}
|
||||||
62
index.html
62
index.html
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue