Skip to content

Commit

Permalink
bugs fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
saaqi committed Jul 26, 2023
1 parent 4cade00 commit ec189c6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 17 deletions.
28 changes: 15 additions & 13 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
--box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
--text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
--transition: all ease-in-out 0.2s;
--dark-text: #212529;
--light-text: #ffffff;
}

body {
Expand Down Expand Up @@ -68,7 +70,7 @@ ul {
border-radius: 5px;
-webkit-box-shadow: var(--button-shadow);
box-shadow: var(--button-shadow);
color: #212529;
color: var(--dark-text);
display: inline-block;
font-weight: 780;
padding: 1rem 2rem;
Expand Down Expand Up @@ -213,7 +215,7 @@ ul.primary-menu {
}

.primary-menu a {
color: #fff;
color: var(--light-text);
text-shadow: var(--text-shadow);
-webkit-transition: var(--transition);
-o-transition: var(--transition);
Expand Down Expand Up @@ -296,7 +298,7 @@ ul.primary-menu {
.menu-toggle {
background: transparent;
border-width: 0;
color: #fff;
color: var(--light-text);
display: block;
padding: 0;
visibility: visible;
Expand Down Expand Up @@ -401,7 +403,7 @@ ul.primary-menu {
}

.hero h1, .hero h2, .hero h3, .hero a.home-phone {
color: #fff;
color: var(--light-text);
}

.hero a.home-phone {
Expand All @@ -411,7 +413,7 @@ ul.primary-menu {
.hero a.home-phone > i {
background-color: var(--accent-color);
padding: 1rem;
color: #212529;
color: var(--dark-text);
border-radius: 2rem;
-webkit-box-shadow: var(--button-shadow);
box-shadow: var(--button-shadow);
Expand Down Expand Up @@ -483,7 +485,7 @@ ul.primary-menu {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 2.5rem 0;
color: #fff;
color: var(--light-text);
}

.ag-courses_item {
Expand All @@ -506,7 +508,7 @@ ul.primary-menu {
}

.ag-courses-item_title {
color: #fff;
color: var(--light-text);
position: relative;
z-index: 2;
overflow: hidden;
Expand Down Expand Up @@ -599,7 +601,7 @@ ul.primary-menu {
.counter-widget {
background-color: var(--secondary-color);
border-radius: 1rem;
color: #212529;
color: var(--dark-text);
padding: 1rem;
text-align: center;
width: 100%;
Expand Down Expand Up @@ -678,7 +680,7 @@ ul.primary-menu {
}

.why-item-container h4 {
color: #fff;
color: var(--light-text);
}

/* why us section */
Expand Down Expand Up @@ -735,7 +737,7 @@ ul.primary-menu {
.contact-form textarea {
background-color: var(--even-bg-color);
border-radius: 5px;
border: 1px solid #212529;
border: 1px solid var(--dark-text);
margin-bottom: 1rem;
outline: 0;
padding: .5rem;
Expand Down Expand Up @@ -790,7 +792,7 @@ ul.primary-menu {

/* footer */
.site-footer {
color: #fff;
color: var(--light-text);
padding-top: 1rem;
background-color: var(--primary-color);
}
Expand All @@ -815,7 +817,7 @@ body.dark a.top-link {
visibility: visible;
}
a.top-link {
background-color: var(--accent-color);
background-color: var(--secondary-color);
border-radius: 50px;
bottom: 10px;
box-shadow: var(--button-shadow);
Expand All @@ -834,7 +836,7 @@ a.top-link {
z-index: 4;
}
a.top-link > i {
color: #fff;
color: var(--dark-text);
}
a.top-link:hover {
-webkit-box-shadow: inset 0 -2px 0 rgba(0,0,0,0.3);
Expand Down
Loading

0 comments on commit ec189c6

Please sign in to comment.