Skip to content

Instantly share code, notes, and snippets.

@CodeMyUI
Created March 17, 2017 01:15
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodeMyUI/cb4cb40d963b52a8624ba46a8b9f503a to your computer and use it in GitHub Desktop.
Save CodeMyUI/cb4cb40d963b52a8624ba46a8b9f503a to your computer and use it in GitHub Desktop.
Proof of Concept Grid/List Surveys
<span class="toggler active" data-toggle="grid"><span class="entypo-layout"></span></span>
<span class="toggler" data-toggle="list"><span class="entypo-list"></span></span>
<ul class="surveys grid">
<li class="survey-item">
<span class="survey-country list-only">
UK
</span>
<span class="survey-name">
UK Beer May 2014
</span>
<span class="survey-country grid-only">
UK
</span>
<div class="pull-right">
<span class="survey-progress">
<span class="survey-progress-bg">
<span class="survey-progress-fg" style="width: 88%;"></span>
</span>
<span class="survey-progress-labels">
<span class="survey-progress-label">
88%
</span>
<span class="survey-completes">
490 / 500
</span>
</span>
</span>
<span class="survey-end-date ended">
2014 - May 10
</span>
<span class="survey-stage">
<span class="stage draft">Draft</span>
<span class="stage awarded">Awarded</span>
<span class="stage live">Live</span>
<span class="stage ended active">Ended</span>
</span>
</div>
</li>
<li class="survey-item">
<span class="survey-country list-only">
US
</span>
<span class="survey-name">
Pepsi Tracker New Orleans
</span>
<span class="survey-country grid-only">
US
</span>
<div class="pull-right">
<span class="survey-progress">
<span class="survey-progress-bg">
<span class="survey-progress-fg" style="width: 25%;"></span>
</span>
<span class="survey-progress-labels">
<span class="survey-progress-label">
25%
</span>
<span class="survey-completes">
150 / 500
</span>
</span>
</span>
<span class="survey-end-date">
2014 - July 12
</span>
<span class="survey-stage">
<span class="stage draft">Draft</span>
<span class="stage awarded">Awarded</span>
<span class="stage live active">Live</span>
<span class="stage ended">Ended</span>
</span>
</div>
</li>
<li class="survey-item">
<span class="survey-country list-only">
US
</span>
<span class="survey-name">
Global Music Brand Tracker
</span>
<span class="survey-country grid-only">
US
</span>
<div class="pull-right">
<span class="survey-end-date">
2014 - Oct 1
</span>
<span class="survey-stage">
<span class="stage draft">Draft</span>
<span class="stage awarded active">Awarded</span>
<span class="stage live">Live</span>
<span class="stage ended">Ended</span>
</span>
</div>
</li>
</ul>

Proof of Concept Grid/List Surveys

This is a simple proof of concept for trimming out the fat on a cumbersome survey list that has way too much information to be humanly digestible.

Alternate between grid and list layouts.

Get only the most important summary info from a birds-eye view.

A Pen by Matt Shwery on CodePen.

License.

$ ->
$('[data-toggle]').on('click', ->
toggle = $(this).addClass('active').attr('data-toggle')
$(this).siblings('[data-toggle]').removeClass('active')
$('.surveys').removeClass('grid list').addClass(toggle)
)
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
@import url(http://weloveiconfonts.com/api/?family=entypo);
/* entypo */
[class*="entypo-"]:before {
font-family: 'entypo', sans-serif;
}
$primary-text-color: #000;
$secondary-text-color: #A1A1A4;
$theme-color: #8DC63F;
* {
box-sizing: border-box;
}
body {
background: #f5f5f5;
max-width: 1200px;
margin: 0 auto;
padding: 10px;
font-family: 'Lato', sans-serif;
text-shadow: 0 0 1px rgba(255,255,255,0.004);
font-size: 100%;
font-weight: 400;
}
.toggler {
color: $secondary-text-color;
font-size: 1.25em;
margin-left: 8px;
text-align: center;
cursor: pointer;
&.active {
color: $primary-text-color;
}
}
.surveys {
list-style: none;
margin: 0;
padding: 0;
}
%card-style {
display: block;
margin-top: 10px;
padding: 20px;
border-radius: 2px;
background: white;
box-shadow: 0 2px 1px rgba(170,170,170,0.25);
}
.survey-item {
@extend %card-style;
}
.survey-name {
font-weight: 400;
}
.list {
.survey-item {
position: relative;
padding: 0;
font-size: 14px;
line-height: 40px;
.pull-right {
position: absolute;
right: 0;
top: 0;
}
@media screen and (max-width: 800px) {
.stage:not(.active) {
display: none;
}
}
@media screen and (max-width: 700px) {
.survey-progress-bg {
display: none;
}
}
@media screen and (max-width: 600px) {
.pull-right {
position: static;
line-height: 20px;
padding-bottom: 10px;
}
}
}
.survey-country,
.survey-progress,
.survey-completes,
.survey-end-date {
color: $secondary-text-color;
}
.survey-country,
.survey-completes,
.survey-end-date,
.survey-name,
.survey-stage {
margin: 0 10px;
}
.survey-country {
margin-right: 0;
}
.survey-end-date,
.survey-completes,
.survey-country,
.survey-name {
vertical-align: middle;
}
.survey-end-date {
display: inline-block;
width: 100px;
white-space: nowrap;
overflow: hidden;
}
}
.survey-stage .stage {
display: inline-block;
vertical-align: middle;
width: 16px;
height: 16px;
overflow: hidden;
border-radius: 50%;
padding: 0;
margin: 0 2px;
background: #f2f2f2;
text-indent: -9999px;
color: transparent;
line-height: 16px;
&.active {
background: $secondary-text-color;
}
}
.list {
.list-only {
display: auto;
}
.grid-only {
display: none !important;
}
}
.grid {
.grid-only {
display: auto;
}
.list-only {
display: none !important;
}
}
.grid {
.survey-item {
position: relative;
display: inline-block;
vertical-align: top;
height: 200px;
width: 250px;
margin: 10px;
@media screen and (max-width: 600px) {
display: block;
width: auto;
height: 150px;
margin: 10px auto;
}
}
.survey-name {
display: block;
max-width: 80%;
font-size: 16px;
line-height: 20px;
}
.survey-country {
font-size: 11px;
line-height: 16px;
text-transform: uppercase;
}
.survey-country,
.survey-end-date {
color: $secondary-text-color;
}
.survey-end-date {
&:before {
content: 'Ends\00a0';
}
&.ended:before {
content: 'Ended\00a0';
}
}
.survey-progress {
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 100%;
padding: 20px;
border-top: 1px solid #eee;
font-size: 13px;
}
.survey-progress-bg {
width: 40%;
display: block;
@media screen and (max-width: 200px) {
display: none;
}
}
.survey-progress-labels {
position: absolute;
right: 20px;
top: 0;
line-height: 40px;
@media screen and (max-width: 200px) {
right: auto;
left: 10px;
}
}
.survey-progress-label {
line-height: 21px;
font-size: 13px;
font-weight: 400;
}
.survey-completes {
line-height: 21px;
font-size: 13px;
vertical-align: middle;
}
.survey-stage {
position: absolute;
top: 20px;
right: 20px;
.stage {
display: none;
}
.active {
display: block;
}
}
.survey-end-date {
font-size: 12px;
line-height: 20px;
}
}
.survey-progress-label {
vertical-align: middle;
margin: 0 10px;
color: $theme-color;
}
.survey-progress-bg {
display: inline-block;
vertical-align: middle;
position: relative;
width: 100px;
height: 4px;
border-radius: 2px;
overflow: hidden;
background: #eee;
}
.survey-progress-fg {
position: absolute;
top: 0;
bottom: 0;
height: 100%;
left: 0;
margin: 0;
background: $theme-color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment