diff --git a/Author/Author-page.html b/Author/Author-page.html index eec29dde..cc2b6098 100644 --- a/Author/Author-page.html +++ b/Author/Author-page.html @@ -100,4 +100,27 @@

Authors

+ + + + + + + diff --git a/Author/styles.css b/Author/styles.css index db273cac..ce94b551 100644 --- a/Author/styles.css +++ b/Author/styles.css @@ -448,4 +448,32 @@ a{ @keyframes mover { to { transform: translateY(-40px); } } +/* Footer Styling */ +.footer { + background-color: #111; /* dark background */ + color: #fff; + text-align: center; + padding: 20px; + margin-top: 40px; + font-size: 14px; +} + +.footer .social-icons { + margin-top: 10px; +} + +.footer .social-icons a { + margin: 0 10px; + display: inline-block; +} + +.footer .social-icons img { + width: 24px; + height: 24px; + transition: transform 0.3s ease; +} + +.footer .social-icons img:hover { + transform: scale(1.2); +} diff --git a/Bitcoin-website/index.html b/Bitcoin-website/index.html index 374b8f08..5a7cce02 100644 --- a/Bitcoin-website/index.html +++ b/Bitcoin-website/index.html @@ -61,7 +61,11 @@ } .menu ul li:hover { - color: #b2b1b1; + background: linear-gradient(90deg, #19d7f8, #fd00da); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + font-weight: bold; + transition: all 0.3s ease; } .active { diff --git a/Login/Signin.css b/Login/Signin.css index 15e093ef..5b3fa50e 100644 --- a/Login/Signin.css +++ b/Login/Signin.css @@ -106,7 +106,7 @@ img.apple { p } -.text-field.lock{ +.text-field.lock { width:15px; height:20px; } @@ -344,4 +344,24 @@ img.apple { flex-direction: column-reverse; padding: 48px 48px 48px 32px; } + + + /* .my-form__button { + background: linear-gradient(90deg, #19d7f8, #fd00da); + border: none; + padding: 12px 20px; + border-radius: 25px; + color: white; + font-weight: bold; + cursor: pointer; + transition: all 0.3s ease; + } + + + .my-form__button:hover { + transform: scale(1.05); + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); + opacity: 0.9; + } */ + } \ No newline at end of file