From e57ff92ddc2e7ffe9f98b6b65ce4e8aa45a9cd81 Mon Sep 17 00:00:00 2001
From: Anton Titovets <bayselonarrend@gmail.com>
Date: Thu, 7 Mar 2024 11:40:41 +0300
Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=B0=D0=B2=D0=BA=D0=B8=20=D0=B4?=
 =?UTF-8?q?=D0=BE=D0=BA=D1=83=D0=BC=D0=B5=D0=BD=D1=82=D0=B0=D1=86=D0=B8?=
 =?UTF-8?q?=D0=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 docs/src/components/HomepageFeatures/index.js |  2 ++
 .../HomepageFeatures/styles.module.css        |  8 ++++++--
 docs/src/css/custom.css                       | 20 +++++++++++++++++--
 docs/src/pages/index.js                       |  2 +-
 docs/src/pages/index.module.css               |  8 ++++++--
 5 files changed, 33 insertions(+), 7 deletions(-)

diff --git a/docs/src/components/HomepageFeatures/index.js b/docs/src/components/HomepageFeatures/index.js
index dd4738447d..52988cbfc1 100644
--- a/docs/src/components/HomepageFeatures/index.js
+++ b/docs/src/components/HomepageFeatures/index.js
@@ -56,6 +56,8 @@ export default function HomepageFeatures() {
           ))}
         </div>
         <hr/>
+        <br/>
+        <br/>
         <section className={styles.container}>
           <span className={styles.looptext}>
             <a  className={styles.ico} href="/docs/Telegram/"> <img src={require('../../../static/img/APIs/Telegram.png').default} width='32px' /></a>
diff --git a/docs/src/components/HomepageFeatures/styles.module.css b/docs/src/components/HomepageFeatures/styles.module.css
index 9fcc11c1f5..28508dec60 100644
--- a/docs/src/components/HomepageFeatures/styles.module.css
+++ b/docs/src/components/HomepageFeatures/styles.module.css
@@ -14,14 +14,17 @@ marquee{
 }
 
 .featureSvg {
-  height: 100px;
-  width: 100px;
+  height: 80px;
+  width: 80px;
 }
 
 .ico{
   padding: 112px;
 }
 
+.hero__title{
+  font-size: 10px;
+}
 .container {
 
   display: flex;
@@ -48,3 +51,4 @@ marquee{
   }
 
 }
+
diff --git a/docs/src/css/custom.css b/docs/src/css/custom.css
index ede7e319db..6d224989b0 100644
--- a/docs/src/css/custom.css
+++ b/docs/src/css/custom.css
@@ -17,10 +17,26 @@
   --docusaurus-highlighted-code-line-bg: rgba(255, 255, 255, 0.3);
 }
 
-.menu__link--active, .menu__link--active:hover{
+.menu__link--active, .menu__link--active:hover, .navbar__link--active{
   color: black;
 }
 
 .table-of-contents__link, .table-of-contents__link:hover, .table-of-contents__link--active, .table-of-contents__link--active:hover{
   color: black;
-}
\ No newline at end of file
+}
+
+.navbar__item:hover, .navbar__link:hover, .navbar__brand:hover{
+  color: gray;
+}
+
+a{
+  color: black;
+}
+
+a:hover, .navbar__title:hover{
+  color: darkgrey;
+}
+
+.breadcrumbs__item--active .breadcrumbs__link {
+  background: darkgray;
+}
diff --git a/docs/src/pages/index.js b/docs/src/pages/index.js
index a92eae93e1..2d1b7e55e2 100644
--- a/docs/src/pages/index.js
+++ b/docs/src/pages/index.js
@@ -15,7 +15,7 @@ function HomepageHeader() {
 
         <img src="/img/logo.svg" className={styles.biglogo}/>
 
-        <Heading as="h1" className="hero__title">
+        <Heading as="p" className="hero__title">
           {siteConfig.title}
         </Heading>
         <p className="hero__subtitle">{siteConfig.tagline}</p>
diff --git a/docs/src/pages/index.module.css b/docs/src/pages/index.module.css
index 2aeb3e95eb..95da115e54 100644
--- a/docs/src/pages/index.module.css
+++ b/docs/src/pages/index.module.css
@@ -4,7 +4,7 @@
  */
 
 .heroBanner {
-  padding: 4rem 0;
+  padding: 3rem 2rem 0;
   text-align: center;
   position: relative;
   overflow: hidden;
@@ -30,4 +30,8 @@
 .biglogo{
   width: 20%;
   height: 20%;
-}
\ No newline at end of file
+}
+
+.heroBanner_src-pages-index-module {
+  padding-bottom: 30px;
+}