Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solved Day 1 Bugs #36

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ hr {
display: table;
padding-left: 140px;
/* SOMETHING CHANGED */
text-align: right;
text-align: left;
}

.text-wrapper>div {
Expand Down Expand Up @@ -388,7 +388,7 @@ hr {
padding: 30px;
border-radius: 4px;
/* SOMETHING CHANGED */
text-align: center;
text-align: left;
box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
Expand Down Expand Up @@ -1148,7 +1148,7 @@ hr {
color: #222222;
position: relative;
/* SOMETHING CHANGED */
text-align: left;
text-align: center;
font-weight: 700;
padding: 30px 0;
border-bottom: 1px solid #f1f1f1;
Expand All @@ -1167,7 +1167,7 @@ hr {

#pricing .table .description {
/* SOMETHING CHANGED */
text-align: right;
text-align: center;
padding: 0px 50px;
margin-bottom: 20px;
}
Expand Down
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="contents text-left">
<div class="contents text-center">
<h2 class="head-title wow fadeInUp">We Discover, Design & Build Digital <br> Presence of Businesses</h2>
<div class="header-button wow fadeInUp" data-wow-delay="0.3s">
<a href="#services" class="btn btn-common">Explore</a>
Expand Down Expand Up @@ -534,21 +534,21 @@ <h2 class="section-title">Our <span>Skill</span></h2>
<h5>Strategy &amp; Analysis <span class="pull-right">88%</span></h5>
<div class="progress" style="opacity: 1; left: 0px;">
<!-- FIX THA PROGRESS BAR -->
<div class="progress-bar" role="progressbar" data-width="87" style="width: 10%;"></div>
<div class="progress-bar" role="progressbar" data-width="87" style="width: 88%;"></div>
</div>
</div>
<div class="progress-box">
<h5>Eeconomic growth <span class="pull-right">95%</span></h5>
<div class="progress" style="opacity: 1; left: 0px;">
<!-- FIX THA PROGRESS BAR -->
<div class="progress-bar" role="progressbar" data-width="96" style="width: 6%;"></div>
<div class="progress-bar" role="progressbar" data-width="96" style="width: 95%;"></div>
</div>
</div>
<div class="progress-box">
<h5>Achieves goals <span class="pull-right">70%</span></h5>
<div class="progress" style="opacity: 1; left: 0px;">
<!-- FIX THA PROGRESS BAR -->
<div class="progress-bar" role="progressbar" data-width="52" style="width: 2%;"></div>
<div class="progress-bar" role="progressbar" data-width="52" style="width: 70%;"></div>
</div>
</div>
<!-- End Progressbar -->
Expand Down