diff --git a/shlok_page/motivation.css b/shlok_page/motivation.css
index 50bed52e..78446f38 100644
--- a/shlok_page/motivation.css
+++ b/shlok_page/motivation.css
@@ -9,7 +9,6 @@ html,
body {
overflow: auto;
height: 120vh;
- background-color: #2980b9;
}
body::-webkit-scrollbar {
@@ -18,7 +17,7 @@ body::-webkit-scrollbar {
#display {
color: black;
- font-size: 1.5em;
+ font-size: 1.5em;
top: 30px;
opacity: 0.8;
filter: alpha(opacity=80);
@@ -42,48 +41,6 @@ body::-webkit-scrollbar {
position: absolute;
}
-footer {
- background-color: #2980b9;
- color: #fff;
- font-size: 14px;
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- padding: 0;
- margin: 0;
-}
-
-footer .logo-title {
- display: flex;
- justify-content: center;
- align-items: center;
-}
-
-footer .quick-links ul {
- display: flex;
- flex-direction: column;
- font-size: 18px;
- margin-top: 15px;
-}
-
-/*
-footer ul li {
- margin-top: 5px;
-} */
-
-footer ul li a {
- color: #fff;
- text-decoration: none;
-}
-
-footer .quick-links ul li a:hover {
- text-decoration: none;
- padding: 5px;
- background-color: #b1bce0;
- color: #666;
-}
-
#line {
width: 100%;
border-bottom: solid rgb(0, 0, 0);
@@ -152,12 +109,6 @@ p:hover {
margin-top: 12px;
}
-.tagline > p {
- font-size: 18px;
- text-align: center;
- color: #fff;
-}
-
#quote2 {
text-align: center;
}
@@ -250,6 +201,7 @@ p:hover {
transform: scale(1.1);
border: none;
}
+
.author {
margin-top: 20px;
margin-bottom: 20px;
@@ -306,6 +258,340 @@ p:hover {
object-fit: cover;
}
+
+.nav {
+ height: 70px;
+ background-color: #2980b9 !important;
+ box-shadow: 0 3px 15px rgba(51, 49, 49, 0.4);
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding-right: 20px;
+ position: sticky;
+ z-index: 99;
+ top: 0;
+ font-family: sans-serif;
+ user-select: none;
+}
+
+.navbar-logo {
+ display: flex;
+ align-items: center;
+ text-transform: uppercase;
+ font-size: 20px;
+ letter-spacing: 1px;
+ padding-left: 18px;
+}
+
+/* .navbar-logo img {
+ width: 60px;
+ background-color: antiquewhite;
+ border-radius: 10%;
+} */
+
+.navbar-logo span {
+ font-weight: bold;
+ color: white;
+ margin-left: 10px;
+}
+.navbar-logo a:hover {
+ text-decoration: none;
+}
+.nav ul li {
+ display: inline-block;
+ padding: auto 20px;
+}
+.nav-menu {
+ margin-bottom: 0;
+ padding-left: 0;
+}
+
+.about {
+ margin-left: 80px;
+ margin-right: 80px;
+}
+
+.nav ul li a {
+ color: white !important;
+ display: block;
+ padding: 0 15px;
+ line-height: 70px;
+ font-size: 17px;
+ background-color: #2980b9 !important;
+ transition: 0.3s;
+ letter-spacing: 1px;
+ margin: 0;
+}
+
+.nav ul li a.active:hover {
+ color: black ;
+ text-decoration: underline;
+ text-decoration-color: black;
+}
+
+.dropdown:hover > a {
+ color: black;
+ text-decoration: underline;
+ text-decoration-color: black;
+}
+
+.nav ul ul {
+ position: absolute !important;
+ top: 85px;
+ border-top: 3.5px solid #8ad0ff;
+ background-color: none;
+ opacity: 0;
+ visibility: hidden;
+ padding-left: 0;
+}
+
+.nav ul li:hover > ul {
+ top: 70px;
+ opacity: 1;
+ visibility: visible;
+ transition: 0.3s linear;
+ list-style: none;
+}
+
+.nav ul ul li {
+ width: 310px;
+ display: list-item;
+ position: relative;
+ border: 1px solid #8ad0ff;
+ border-top: none;
+}
+
+a.dropdown-item{
+ margin: 0 !important;
+}
+/* ul.dropdown-menu.show{
+ margin: 0;
+ padding: 0;
+} */
+.nav ul ul li a {
+ line-height: 25px;
+ padding: 10px 15px;
+ box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
+}
+
+/* Google Translate */
+#google_translate_element select {
+ /* background-color: #2980b9 !important; */
+
+ background-color: #f6edfd;
+ color: black;
+ border: none;
+ border-radius: 3px;
+ padding: 6px 8px;
+ cursor: pointer;
+}
+
+.first_letter{
+ font-size: 8.6rem;
+ font-weight: 400;
+}
+
+.first_para{
+ font-size: 5rem;
+ font-weight: 350;
+ color: black;
+}
+
+.head{
+ margin-left: 1rem;
+}
+
+.quote-box{
+ background-color: #fefae0;
+ border-radius: 0.5cm;
+}
+
+.card-container {
+ display: flex;
+ justify-content: space-around;
+ margin: 5rem;
+ gap: 3rem;
+}
+
+.card {
+ position: relative;
+ display: flex;
+ flex-direction: column;
+ border: 2px solid black;
+ border-radius: 0.3cm;
+ max-height: 815px;
+ overflow: hidden;
+ transition: transform 0.3s ease-in-out;
+}
+
+.card:hover{
+ transform: scale(0.95);
+ cursor:pointer;
+}
+
+
+.card h3 {
+ text-align: center;
+ font-size: 3rem;
+ opacity: 1;
+ transition: opacity 0.3s ease;
+ background-color: #fefae0;
+}
+
+.card .para {
+ font-size: 2rem;
+ margin: 1rem;
+ transition: opacity 0.3s ease;
+}
+
+.card p {
+ text-align: left;
+}
+
+.card a{
+ text-decoration: none;
+}
+
+.card button {
+ padding: 1rem;
+ width: 35rem;
+ border-radius: 0.2cm;
+ font-size: 2rem;
+ display: flex;
+ border: 2px solid #14213d;
+ color: rgb(0, 0, 0);
+ font-family: 'Times New Roman', Times, serif;
+ position: relative;
+ overflow: hidden;
+ border: 2px solid purple;
+ z-index: 1;
+}
+
+.card button::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ left: -100%;
+ width: 100%;
+ height: 100%;
+ background-color: #240066;
+ transition: left 0.5s ease;
+ z-index: -1;
+}
+
+.card button:hover::before {
+ left: 0;
+}
+
+.card button:hover {
+ color: white;
+}
+
+
+ .but{
+ display: flex;
+ justify-content: center;
+ }
+
+ footer .logo {
+ border-radius: 50%;
+ display: flex;
+ justify-content: left;
+ margin-left: 5rem;
+ height: 12rem;
+ width:12rem
+}
+
+footer {
+ background-color: #2980b9;
+ color: #fff;
+ padding: 20px 0;
+ font-size: 14px;
+ height:40rem
+}
+
+footer .quick-links ul {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ font-size: 18px;
+ margin-top: 15px;
+}
+footer ul li {
+ margin-top: 5px;
+}
+footer ul li a {
+ color: #fff;
+ text-decoration: none;
+}
+footer .quick-links ul li a:hover {
+ text-decoration: none;
+ padding: 5px;
+ background-color: #b1bce0;
+ color: #666;
+}
+
+.footer-top{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-direction: row;
+ margin: 2rem;
+}
+
+.intro{
+ font-size: 1.8rem;
+ margin: 2rem;
+}
+
+/*
+.copyright{
+ display:flex;
+ justify-content: center;
+ flex-direction: column;
+ font-size: 1.8rem;
+} */
+
+.two-links {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin-top: 20px;
+ font-size: 2.8rem;
+}
+
+.two-links a {
+ color: #fff;
+ text-decoration: none;
+ margin: 0 10px;
+}
+
+.footer-top {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+}
+
+.footer-socials {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.footer-socials ul {
+ margin: -12rem;
+}
+
+.footer-socials a {
+ color: rgb(0, 0, 0);
+ text-decoration: none;
+}
+
+.copyright{
+ position: relative;
+ top:8rem;
+}
+
.footer-logo{
max-width: 100%;
height: auto;
@@ -314,4 +600,5 @@ p:hover {
.footer-divide{
margin-left: 10rem;
margin-right: 10rem;
-}
\ No newline at end of file
+}
+
diff --git a/shlok_page/motivation.html b/shlok_page/motivation.html
index b89ae38f..04c9f0be 100644
--- a/shlok_page/motivation.html
+++ b/shlok_page/motivation.html
@@ -4,12 +4,22 @@
Random Gita Shlok Generator
+
+
+
+
+
-
-
+
+
@@ -35,7 +45,7 @@
Home
- Blog
+ Power of knowledge Blogs
Power of Sloks
@@ -70,6 +80,165 @@
+
+
+
+
+
+
+
+
+
+ S
+
+
+ hloks have changed lives of Great People
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Abandon all varieties of religion and just surrender unto Me. I
+ shall deliver you from all sinful reactions. Do not fear.
+
+
+
+
+
+
- Lord Sri Krishna - Bhagvad-gita 18.66
+
+
+ New Quote
+
+
+
+
+
+
+
+
+
+
+
+ Quote To be Displayed Here
+
+
+
+
+
Author to be Displayed Here
+
+
+ New Quote
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Mahatma Gandhi
+
+
+ Mahatma Gandhi, the revered leader of India's independence movement, was deeply influenced by the teachings of the Bhagavad Gita, a sacred Hindu scripture. The Bhagavad Gita contains numerous slokas that emphasize the importance of selflessness, non-violence, and the pursuit of truth.
+
+
+
+
+
+
+
+
Rabindranath Tagore
+
+
+ Rabindranath Tagore, the Nobel laureate poet and philosopher from India, had a deep appreciation for the
+ spiritual and philosophical aspects of life. He frequently drew inspiration from the Upanishads, a collection of ancient Hindu scriptures, and incorporated their slokas into his literary works.
+
+
+
+
+
+
+
+
Swami Vivekananda
+
+
+ Swami Vivekananda, a prominent spiritual leader and disciple of Sri Ramakrishna, played a crucial role in introducing Hindu philosophy to the West. He often quoted slokas from ancient texts like the Upanishads and the Bhagavad Gita during his speeches and lectures.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -247,4 +416,5 @@ Swami Vivekananda
-
\ No newline at end of file
+
+