Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 8a63957

Browse files
committed
Merge pull request #213 from appirio-tech/more-more-updates
More CSS tweaks
2 parents b4eff28 + e8849d5 commit 8a63957

File tree

2 files changed

+61
-25
lines changed

2 files changed

+61
-25
lines changed

src/css/challenge-detail-software.css

Lines changed: 37 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,17 @@
7272
}
7373

7474
#stepBox .middleColumn table h2 {
75-
color: #666666;
76-
font-size: 14px;
77-
font-weight: bold;
75+
margin-top: 11px;
7876
margin-bottom: 27px;
77+
font-size: 14px;
78+
color: #666666;
7979
text-align: center;
8080
}
8181

8282
#stepBox .middleColumn table h3 {
83-
color: #00AEFF;
83+
margin-top: 30px;
8484
font-size: 24px;
85-
font-weight: bold;
85+
color: #00AEFF;
8686
}
8787

8888
.challenge-detail.develop #stepBox .middleColumn table h3 {
@@ -480,6 +480,29 @@ h1.center {
480480
border-bottom: 1px solid #e7e7e7;
481481
}
482482

483+
.challenge-detail .columnSideBar .inner b {
484+
font-size: 14px;
485+
}
486+
487+
.challenge-detail .columnSideBar .inner ul li {
488+
font-family: 'Merriweather Sans';
489+
font-weight: 300;
490+
}
491+
492+
.challenge-detail .columnSideBar .inner ul li:last-child {
493+
margin-bottom: 10px;
494+
}
495+
496+
.challenge-detail .columnSideBar .inner p {
497+
font-family: 'Merriweather Sans';
498+
font-weight: 300;
499+
font-size: 13px;
500+
}
501+
502+
.challenge-detail .columnSideBar .inner p strong {
503+
font-family: 'Sofia Pro';
504+
}
505+
483506
.challenge-detail .columnSideBar h3 {
484507
color: #000 !important;
485508
font-size: 14px;
@@ -756,6 +779,7 @@ h1.center {
756779
display: inline-block;
757780
padding-top: 5px;
758781
width: 77%;
782+
font-weight: normal;
759783
color: #fff;
760784
}
761785

@@ -975,6 +999,12 @@ h1.center {
975999
transition: none;
9761000
}
9771001

1002+
.downloadDocumentList strong {
1003+
font-size: 13px;
1004+
font-weight: 300;
1005+
font-family: 'Merriweather Sans';
1006+
}
1007+
9781008
@media (max-width: 1019px) {
9791009
/* .challenge-detail .pageHeading h1 {
9801010
font-size: 18px;
@@ -2692,7 +2722,7 @@ h1.center {
26922722
color: #000;
26932723
text-transform: uppercase;
26942724
font-family: "Sofia Pro", "Merriweather Sans", Helvetica, Aria, sans-serif;
2695-
margin: 40px 0 10px 0;
2725+
margin: 30px 0 10px 0;
26962726
text-align: left; }
26972727
.cd-wrapper .challenge-detail .columnSideBar h3 {
26982728
color: #3d3d3d;
@@ -2736,7 +2766,7 @@ h1.center {
27362766
.cd-wrapper #mainContent.splitLayout,
27372767
.cd-wrapper #mainContent.layChallenges {
27382768
max-width: 1080px;
2739-
padding: 60px 60px 30px;
2769+
padding: 40px 60px 30px;
27402770
margin: 0 auto;
27412771
background: #fff; }
27422772
.cd-wrapper #mainContent .container {

src/js/app/challenge-details/index.html

Lines changed: 24 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -43,47 +43,53 @@
4343

4444
<tr>
4545
<td ng-if="!CD.isDesign && CD.challenge.challengeType != 'Code'" class="fifty">
46-
<h2>1st PLACE</h2>
47-
4846
<h3>
4947
<small>$</small><span ng-bind="CD.challenge.prize ? (CD.challenge.prize[0] ? CD.challenge.prize[0] : '') : ''"></span>
5048
</h3>
49+
50+
<h2>1st PLACE</h2>
5151
</td>
5252
<td ng-if="!CD.isDesign && CD.challenge.challengeType != 'Code'" class="fifty">
53-
<h2>2nd PLACE</h2>
5453
<h3>
5554
<small>$</small><span ng-bind="CD.challenge.prize ? (CD.challenge.prize[1] ? CD.challenge.prize[1] : '0') : ''"></span>
5655
</h3>
56+
57+
<h2>2nd PLACE</h2>
5758
</td>
5859
<td ng-if="(designOrCode = CD.isDesign || CD.challenge.challengeType == 'Code')" class="twenty {{!(CD.challenge.prize && CD.challenge.prize[0]) ? 'noPrize' : ''}}">
59-
<h2>1st PLACE</h2>
60-
6160
<h3>
62-
<small>$</small><span ng-bind="(CD.challenge.prize && CD.challenge.prize[0]) || 0"></span></h3>
61+
<small>$</small><span ng-bind="(CD.challenge.prize && CD.challenge.prize[0]) || 0"></span>
62+
</h3>
63+
64+
<h2>1st PLACE</h2>
6365
</td>
6466
<td ng-if="designOrCode" class="twenty {{!(CD.challenge.prize && CD.challenge.prize[1]) ? 'noPrize' : ''}}">
65-
<h2>2nd PLACE</h2>
66-
6767
<h3>
68-
<small>$</small><span ng-bind="(CD.challenge.prize && CD.challenge.prize[1]) || 0"></span></h3>
68+
<small>$</small><span ng-bind="(CD.challenge.prize && CD.challenge.prize[1]) || 0"></span>
69+
</h3>
70+
71+
<h2>2nd PLACE</h2>
6972
</td>
7073
<td ng-if="designOrCode" class="twenty {{!(CD.challenge.prize && CD.challenge.prize[2]) ? 'noPrize' : ''}}">
71-
<h2>3rd PLACE</h2>
72-
7374
<h3>
74-
<small>$</small><span ng-bind="(CD.challenge.prize && CD.challenge.prize[2]) || 0"></span></h3>
75+
<small>$</small><span ng-bind="(CD.challenge.prize && CD.challenge.prize[2]) || 0"></span>
76+
</h3>
77+
78+
<h2>3rd PLACE</h2>
7579
</td>
7680
<td ng-if="designOrCode" class="twenty {{!(CD.challenge.prize && CD.challenge.prize[3]) ? 'noPrize' : ''}}">
77-
<h2>4th PLACE</h2>
78-
7981
<h3>
80-
<small>$</small><span ng-bind="(CD.challenge.prize && CD.challenge.prize[3]) || 0"></span></h3>
82+
<small>$</small><span ng-bind="(CD.challenge.prize && CD.challenge.prize[3]) || 0"></span>
83+
</h3>
84+
85+
<h2>4th PLACE</h2>
8186
</td>
8287
<td ng-if="designOrCode" class="twenty {{!(CD.challenge.prize && CD.challenge.prize[4]) ? 'noPrize' : ''}}">
83-
<h2>5th PLACE</h2>
84-
8588
<h3>
86-
<small>$</small><span ng-bind="(CD.challenge.prize && CD.challenge.prize[4]) || 0"></span></h3>
89+
<small>$</small><span ng-bind="(CD.challenge.prize && CD.challenge.prize[4]) || 0"></span>
90+
</h3>
91+
92+
<h2>5th PLACE</h2>
8793
</td>
8894
<td ng-if="designOrCode && (CD.challenge.prize && CD.challenge.prize.length > 5)" class="morePayments active closed" rowspan="2">
8995
</td>

0 commit comments

Comments
 (0)