Skip to content

Commit 1add63a

Browse files
committed
add UI cue to click flip cards
1 parent fd26599 commit 1add63a

File tree

3 files changed

+34
-9
lines changed

3 files changed

+34
-9
lines changed

_data/clients.yml

+1
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,4 @@
8181

8282
testimonial: |
8383
"You were extremely flexible and understanding during a difficult time in our company, you were approachable and down to earth (not preachy) with your knowledge. You were inclusive with all members of the session and made them feel a part of it. You representing me better than any other consultant/outside person has ever done! Managers and others are now actually talking about Performance Management in a way that is inspiring, realizing we need to do a better job at it and their openness and willingness to participate. People should know that you are excellent at what you do, extremely humble and so incredibly thorough."
84+

css/custom.css

+28-8
Original file line numberDiff line numberDiff line change
@@ -849,11 +849,13 @@ Process Page Styles
849849
}
850850

851851
i.icon-line-square-plus {
852-
opacity: .2;
853-
color: #0a2323;
854-
font-size: 1.4em;
852+
/*opacity: .2;
853+
color: #0a2323;*/
854+
font-size: 16px;
855+
padding: 5px;
855856
}
856857

858+
857859
#process .feature-box.media-box.fbox-bg:hover .fbox-desc h4, #process .feature-box.media-box.fbox-bg:hover i.icon-share-alt {
858860
text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
859861
-webkit-transition: all .5s ease;
@@ -954,10 +956,16 @@ h4.flip-front {
954956
}
955957

956958
#process .flip-arrow {
957-
margin-left: 80%;
959+
margin-left: 30%;
960+
opacity: .4;
961+
color: #0a2323;
958962
bottom: 15px;
959963
position: absolute;
960964
z-index: 3;
965+
text-align: center;
966+
}
967+
#process .flip-arrow:hover {
968+
opacity: .6;
961969
}
962970
@media all and (max-width: 1199px) {
963971
h4 {
@@ -967,7 +975,16 @@ h4.flip-front {
967975
.feature-box.media-box.fbox-bg .fbox-desc.fbox-desc-back {
968976
padding-top: 20px;
969977
}
978+
#process .flip-arrow {
979+
margin-left: 15%;
980+
}
970981
}
982+
983+
984+
@media all and (max-width: 767px) {
985+
986+
}
987+
971988
@media all and (max-width: 479px) {
972989
#process .container {
973990
width: 390px !important;
@@ -1007,18 +1024,21 @@ h4.flip-front {
10071024
/* Check this */
10081025
@media all and (max-width: 767px){
10091026
#process .flip-arrow span.visible-xs {
1010-
margin-left: -145px;
1027+
margin-left: -165px;
10111028
bottom: 5px;
10121029
position: absolute;
10131030
z-index: 3;
1014-
width: 150px;
1015-
font-size: 13px!important;
1031+
/*width: 150px;*/
1032+
font-size: 16px!important;
10161033
font-style: italic;
1017-
opacity: .4;
1034+
/*opacity: .4;*/
10181035
color: #0a2323;
10191036
font-size: 1.4em;
10201037
}
10211038

1039+
#process .flip-arrow {
1040+
margin-left: 75%;
1041+
}
10221042

10231043
}
10241044

process.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ <h2>{{ site.data.headers.process_page_header }}</h2>
5353
<h4 class="flip-front">
5454
{{ question.question }}
5555
</h4>
56-
<div class="flip-arrow"> <span class="visible-xs">Tap to flip the card over</span> <i class="icon-line-square-plus"></i> </div>
56+
<div class="flip-arrow">
57+
<span class="hidden-xs" style="font-size: 16px;">Click to flip the card over</span>
58+
<span class="visible-xs" style="font-size: 16px;">Tap to flip the card over</span> <i class="icon-line-square-plus"></i>
59+
60+
</div>
5761
</div>
5862
</div>
5963
</div>

0 commit comments

Comments
 (0)