diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6b665aa --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} diff --git a/AboutUs/About.css b/AboutUs/About.css index d0f124a..709fb18 100644 --- a/AboutUs/About.css +++ b/AboutUs/About.css @@ -1,3 +1,31 @@ + +::-webkit-scrollbar-track +{ + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); + background-color: #F5F5F5; +} + +::-webkit-scrollbar +{ + width: 10px; + background-color: #F5F5F5; +} + +::-webkit-scrollbar-thumb +{ + background-color:#FF9900; + background-image: -webkit-linear-gradient(45deg, + rgba(255, 255, 255, .2) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, .2) 50%, + rgba(255, 255, 255, .2) 75%, + transparent 75%, + transparent) +} + + + html { -webkit-tap-highlight-color: transparent; -webkit-text-size-adjust: 100%; @@ -164,8 +192,9 @@ body { } .btn:hover { - color: rgba(0, 0, 0, 0.5); + color: rgb(245, 245, 245); transition: color 400ms ease-out; + background-color: #541a8be7; } .btn:after { @@ -176,8 +205,8 @@ body { height: 3.5em; left: 50%; top: 50%; - margin-left: -1.75em; - margin-top: -1.75em; + margin-left: 1.75em; + margin-top: 1.75em; border-radius: 100%; } @@ -186,6 +215,13 @@ body { left: 1.2em; opacity: 1; pointer-events: auto; + height: 60px; + width: 60px; + border-radius: 8px; + cursor: pointer; + background-color: #541a8b24; + padding-left: 11px; + padding-top: 9px; } .btn--gh { @@ -193,6 +229,13 @@ body { right: 1.2em; opacity: 1; pointer-events: auto; + height: 60px; + width: 60px; + border-radius: 8px; + cursor: pointer; + background-color: #541a8b24; + padding-left: 10px; + padding-top: 9px; } @media screen and (max-width: 768px) { @@ -231,3 +274,54 @@ body { right: 1em; } } + +.icons { + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + gap: 25px; +} + +.icons .icon i { + margin-top: 15px; + font-size: 30px; + transition: all 0.9s ease; +} + +.icons .icon:hover i { + transform: scale(1.2); +} + +.icons .icon:hover .fab.fa-facebook { + color: #3b5998; +} + +.icons .icon:hover .fab.fa-twitter { + color: #090e11; +} + +.icons .icon:hover .fab.fa-instagram { + background: radial-gradient( + circle at 30% 107%, + #fdf497 0%, + #fdf497 5%, + #fd5949 45%, + #d6249f 60%, + #285aeb 90% + ); + background-clip: text; + border-radius: 20%; + transform: scale(1.5); + color: transparent; +} + +.icons .icon:hover .fab.fa-youtube { + color: #c31a1e; +} +.icons .icon:hover .fab.fa-github { + color: #333; +} +.icons .icon:hover .fab.fa-linkedin { + color: #0077b5; +} diff --git a/AboutUs/About.html b/AboutUs/About.html index 886d9c4..6b6d01b 100644 --- a/AboutUs/About.html +++ b/AboutUs/About.html @@ -84,9 +84,48 @@