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

Commit 99d5be9

Browse files
committed
updates for community team
1 parent 9bdc0a8 commit 99d5be9

File tree

6 files changed

+54
-13
lines changed

6 files changed

+54
-13
lines changed

src/css/member-onboarding.css

100644100755
Lines changed: 49 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -236,13 +236,31 @@
236236
font-family: 'Sofia Pro';
237237
}
238238
#onboarding .pageTitleWrapper {
239-
height: initial;
239+
height: auto!important;
240240
margin-bottom: 10px;
241-
overflow:hidden;
241+
overflow:hidden!important;
242242
clear:both;
243+
/*IE*/
244+
line-height: inherit !important;
245+
/* Rest of the world */
246+
line-height: initial !important;
247+
248+
/*IE*/
249+
min-height: auto !important;
250+
/* Rest of the world */
251+
min-height: initial !important;
243252
}
244253
#onboarding .pageTitleWrapper .pageTitle {
245-
height: initial;
254+
height: auto!important;
255+
/*IE*/
256+
line-height: inherit !important;
257+
/* Rest of the world */
258+
line-height: initial !important;
259+
260+
/*IE*/
261+
min-height: auto !important;
262+
/* Rest of the world */
263+
min-height: initial !important;
246264
}
247265
#onboarding .pageTitleWrapper .pageTitle h2.blogPageTitle {
248266
float: left;
@@ -1928,22 +1946,40 @@ color: #3d4d65 !important;
19281946
margin-left: 30px;
19291947
}
19301948

1931-
.footer-buttons li{
1949+
.footer-buttons li,
1950+
.footer-buttons li a{
19321951
float:left;
19331952
width: 108px;
19341953
margin-right: 10px;
1935-
}
1954+
}
19361955

19371956
.footer-buttons li span{
19381957
display:inline-block;
19391958
clear:both;
19401959
overflow: hidden;
19411960
margin: 0 auto 10px auto;
19421961
width: 60px;
1943-
height: 60px;
1944-
background:#32D50A;
1962+
height: 60px;
19451963
}
19461964

1965+
.icon-design span{
1966+
background: url("/mf/i/design_onboarding_icon.png") no-repeat 0 0;
1967+
background-size: 60px 60px;
1968+
}
1969+
.icon-development span{
1970+
background:url("/mf/i/development_onboarding_icon.png") no-repeat 0 0;
1971+
background-size: 60px 60px;
1972+
}
1973+
.icon-data-science span{
1974+
background:url("/mf/i/data_science_onboarding_icon.png") no-repeat 0 0;
1975+
background-size: 60px 60px;
1976+
}
1977+
.icon-programming span{
1978+
background:url("/mf/i/competitive_programming_onboarding_icon.png") no-repeat 0 0;
1979+
background-size: 60px 60px;
1980+
}
1981+
1982+
19471983
.footer-buttons li p{
19481984
display:block;
19491985
clear:both;
@@ -1958,12 +1994,17 @@ color: #3d4d65 !important;
19581994
.footer-buttons li a{
19591995
display:block;
19601996
font-size: 14px;
1961-
font-weight: 200;
1997+
font-weight: 400;
19621998
text-transform:uppercase;
19631999
color: #a3a3ae;
19642000
text-align:center;
19652001
}
19662002

2003+
.box-15439,
2004+
.box-15440{
2005+
display: none;
2006+
}
2007+
19672008
@media only screen and (max-width: 480px) {
19682009
#onboarding .pageTitleWrapper{
19692010
padding-bottom: 20px;
31.2 KB
Loading
29.3 KB
Loading
29 KB
Loading
31.6 KB
Loading

wp/wp-content/themes/tcs-responsive/member-onboarding.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
if( $posts->have_posts() ): while( $posts->have_posts() ) : $posts->the_post(); ?>
8888

8989

90-
<div class="flip-container" ontouchstart="this.classList.toggle('hover');">
90+
<div class="flip-container box-<?php echo $post->ID ?>" ontouchstart="this.classList.toggle('hover');">
9191
<div class="flipper">
9292
<div class="front">
9393
<span class="name">
@@ -209,10 +209,10 @@
209209
<h3>What will you create?</h3>
210210
<h4>Jump into a competition now!</h4>
211211
<ul class="footer-buttons">
212-
<li><a href="https://www.topcoder.com/challenges/design/active/"><span></span><p>Design</p></a></li>
213-
<li><a href="https://www.topcoder.com/challenges/develop/active/"><span></span><p>Development</p></a></li>
214-
<li><a href="https://www.topcoder.com/challenges/data/active/"><span></span><p>Data Science</p></a></li>
215-
<li class="last"><a href="https://arena.topcoder.com/"><span></span><p>Competitive Programming</p></a></li>
212+
<li><a href="https://www.topcoder.com/challenges/design/active/" class="icon-design"><span></span><p>Design</p></a></li>
213+
<li><a href="https://www.topcoder.com/challenges/develop/active/" class="icon-development"><span></span><p>Development</p></a></li>
214+
<li><a href="https://www.topcoder.com/challenges/data/active/" class="icon-data-science"><span></span><p>Data Science</p></a></li>
215+
<li class="last"><a href="https://arena.topcoder.com/" class="icon-programming"><span></span><p>Competitive Programming</p></a></li>
216216
</ul>
217217
<!--<a data-rel="lightbox" class="btn-play" href="https://www.youtube.com/watch?v=_ncY-jYlTjY?autoplay=1">GETTING STARTED</a>-->
218218

0 commit comments

Comments
 (0)