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 all day-1 issues #48

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
23 changes: 15 additions & 8 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ a:not([href]):not([tabindex]) {
}

.section-header p {
text: center;
text-align: center;
font-weight: 400;
line-height: 26px;
}
Expand Down Expand Up @@ -130,8 +130,11 @@ a:not([href]):not([tabindex]) {
position: relative;
z-index: 1;
text-transform: uppercase;
/* display: table;
margin: 0 auto; */
}


.btn-common:hover {
color: #fff;
background-color: #222;
Expand Down Expand Up @@ -327,13 +330,14 @@ hr {
height: 100%;
display: table;
padding-left: 140px;
/* SOMETHING CHANGED */
padding-right:35px;
text-align: right;
}

.text-wrapper>div {
vertical-align: middle;
display: table-cell;
text-align:left;
}

.feature-thumb {
Expand Down Expand Up @@ -387,8 +391,7 @@ hr {
margin: 15px 0;
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 @@ -691,6 +694,12 @@ hr {
line-height: 48px;
font-weight: 700;
margin-bottom: 30px;
text-align:center;
}

#hero-area .contents .btn-common{
display: table;
margin: 0 auto;
}

/* Team Item */
Expand Down Expand Up @@ -1147,8 +1156,7 @@ hr {
font-size: 30px;
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 @@ -1166,8 +1174,7 @@ hr {
}

#pricing .table .description {
/* SOMETHING CHANGED */
text-align: right;
text-align: center;
padding: 0px 50px;
margin-bottom: 20px;
}
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
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