forked from uxchecklist/uxchecklist.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
andrea.soverini
authored and
andrea.soverini
committed
Nov 26, 2014
0 parents
commit 476d75c
Showing
183 changed files
with
1,043 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
/*! | ||
* LABELAUTY jQuery Plugin Styles | ||
* | ||
* @file: jquery-labelauty.css | ||
* @author: Francisco Neves (@fntneves) | ||
* @site: www.francisconeves.com | ||
* @license: MIT License | ||
*/ | ||
|
||
/* Prevent text and blocks selection */ | ||
input.labelauty + label ::selection { background-color: rgba(255, 255, 255, 0); } | ||
input.labelauty + label ::-moz-selection { background-color: rgba(255, 255, 255, 0); } | ||
|
||
/* Hide original checkboxes. They are ugly! */ | ||
input.labelauty { display: none !important; } | ||
|
||
/* | ||
* Let's style the input | ||
* Feel free to work with it as you wish! | ||
*/ | ||
input.labelauty + label | ||
{ | ||
display: table; | ||
font-size: 11px; | ||
padding: 10px; | ||
background-color: #efefef; | ||
color: #b3b3b3; | ||
cursor: pointer; | ||
|
||
border-radius: 3px 3px 3px 3px; | ||
-moz-border-radius: 3px 3px 3px 3px; | ||
-webkit-border-radius: 3px 3px 3px 3px; | ||
|
||
|
||
transition: background-color 0.25s; | ||
-moz-transition: background-color 0.25s; | ||
-webkit-transition: background-color 0.25s; | ||
-o-transition: background-color 0.25s; | ||
|
||
-moz-user-select: none; | ||
-khtml-user-select: none; | ||
-webkit-user-select: none; | ||
-o-user-select: none; | ||
} | ||
|
||
/* Stylish text inside label */ | ||
|
||
input.labelauty + label > span.labelauty-unchecked, | ||
input.labelauty + label > span.labelauty-checked | ||
{ | ||
display: inline-block; | ||
line-height: 16px; | ||
vertical-align: bottom; | ||
} | ||
|
||
/* Stylish icons inside label */ | ||
|
||
input.labelauty + label > span.labelauty-unchecked-image, | ||
input.labelauty + label > span.labelauty-checked-image | ||
{ | ||
display: inline-block; | ||
width: 16px; | ||
height: 16px; | ||
vertical-align: bottom; | ||
background-repeat: no-repeat; | ||
background-position: left center; | ||
|
||
transition: background-image 0.5s linear; | ||
-moz-transition: background-image 0.5s linear; | ||
-webkit-transition: background-image 0.5s linear; | ||
-o-transition: background-image 0.5s linear; | ||
} | ||
|
||
/* When there's a label, add a little margin to the left */ | ||
input.labelauty + label > span.labelauty-unchecked-image + span.labelauty-unchecked, | ||
input.labelauty + label > span.labelauty-checked-image + span.labelauty-checked | ||
{ | ||
margin-left: 7px; | ||
} | ||
|
||
/* When not Checked */ | ||
input.labelauty:not(:checked):not([disabled]) + label:hover | ||
{ | ||
background-color: #eaeaea; | ||
color: #a7a7a7; | ||
} | ||
input.labelauty:not(:checked) + label > span.labelauty-checked-image | ||
{ | ||
display: none; | ||
} | ||
|
||
input.labelauty:not(:checked) + label > span.labelauty-checked | ||
{ | ||
display: none; | ||
} | ||
|
||
/* When Checked */ | ||
input.labelauty:checked + label | ||
{ | ||
background-color: #3498db; | ||
color: #ffffff; | ||
} | ||
|
||
input.labelauty:checked:not([disabled]) + label:hover | ||
{ | ||
background-color: #72c5fd; | ||
} | ||
input.labelauty:checked + label > span.labelauty-unchecked-image | ||
{ | ||
display: none; | ||
} | ||
|
||
input.labelauty:checked + label > span.labelauty-unchecked | ||
{ | ||
display: none; | ||
} | ||
|
||
input.labelauty:checked + label > span.labelauty-checked | ||
{ | ||
display: inline-block; | ||
} | ||
|
||
input.labelauty.no-label:checked + label > span.labelauty-checked | ||
{ | ||
display: block; | ||
} | ||
|
||
/* When Disabled */ | ||
input.labelauty[disabled] + label | ||
{ | ||
opacity: 0.5; | ||
} | ||
|
||
/* Add a background to (un)checked images */ | ||
input.labelauty + label > span.labelauty-unchecked-image | ||
{ | ||
background-image: url( ../img/input-unchecked.png ); | ||
} | ||
|
||
input.labelauty + label > span.labelauty-checked-image | ||
{ | ||
background-image: url( ../img/input-checked.png ); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,235 @@ | ||
/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */ | ||
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0} | ||
|
||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400); | ||
|
||
body { | ||
font-family: 'Open Sans', "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; | ||
font-weight: 300; | ||
} | ||
|
||
/* clearfix */ | ||
.clearfix:before, | ||
.clearfix:after { | ||
content: " "; | ||
display: table; | ||
} | ||
|
||
.clearfix:after { | ||
clear: both; | ||
} | ||
|
||
.clearfix { | ||
*zoom: 1; | ||
} | ||
/* end clearfix */ | ||
|
||
*, *:after, *:before { | ||
box-sizing: border-box; | ||
} | ||
|
||
.left { | ||
float: left; | ||
} | ||
.right { | ||
float: right; | ||
} | ||
|
||
|
||
.rotate { | ||
-webkit-transform: rotate(-90deg); | ||
-moz-transform: rotate(-90deg); | ||
-ms-transform: rotate(-90deg); | ||
-o-transform: rotate(-90deg); | ||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); | ||
} | ||
|
||
a { | ||
color: blue; | ||
text-decoration: none; | ||
} | ||
a:hover { | ||
text-decoration: none; | ||
border-bottom: 2px solid; | ||
padding-bottom: 2px; | ||
} | ||
|
||
#header { | ||
padding: 1.25rem; | ||
text-align: center; | ||
} | ||
#footer { | ||
padding: 1.25rem; | ||
text-align: center; | ||
} | ||
|
||
.title { | ||
color: #FFF; | ||
background: #369; | ||
padding: 0.8rem 1.25rem; | ||
} | ||
|
||
#Research { background: #B3C126; } | ||
#Plan { background: #FECC2F; } | ||
#Explore { background: #F8A227; } | ||
#Communicate { background: #F46320; } | ||
#Create { background: #DB3937; } | ||
#Feedbacks { background: #EE6579; } | ||
#Finalise { background: #A164D9; } | ||
#Delight { background: #40A4D8; } | ||
#Analyse { background: #33BEB7; } | ||
|
||
.cards { | ||
border: 1px solid #f1f1f1; | ||
padding:20px; | ||
padding: 1.25rem; | ||
position: relative; | ||
display: -webkit-box; | ||
display: -webkit-flex; | ||
display: -ms-flexbox; | ||
display: flex; | ||
-webkit-flex-basis: 100%; | ||
-ms-flex-preferred-size: 100%; | ||
flex-basis: 100%; | ||
-webkit-flex-shrink: 0; | ||
-ms-flex-negative: 0; | ||
flex-shrink: 0; | ||
-webkit-box-flex: 2; | ||
-webkit-flex-grow: 2; | ||
-ms-flex-positive: 2; | ||
flex-grow: 2; | ||
} | ||
|
||
.cards div.img { | ||
margin-bottom: 10px; | ||
-webkit-flex-shrink: 0; | ||
-ms-flex-negative: 0; | ||
flex-shrink: 0; | ||
} | ||
|
||
.cards .img img { | ||
width: 64px; | ||
height: 64px; | ||
} | ||
|
||
.cards .right { | ||
-webkit-flex-shrink: 0; | ||
-ms-flex-negative: 0; | ||
flex-shrink: 0; | ||
} | ||
|
||
.card-content { | ||
padding: 0 10px; | ||
-webkit-box-flex: 3; | ||
-webkit-flex-grow: 3; | ||
-ms-flex-positive: 3; | ||
flex-grow: 3; | ||
} | ||
|
||
.card-content label { | ||
display: block; | ||
font-size: 1.4em; | ||
margin-bottom: 0.5em; | ||
cursor: pointer; | ||
} | ||
|
||
.card-content p { | ||
font-size: 0.9em; | ||
line-height: normal; | ||
padding-right: 10px; | ||
} | ||
|
||
@media (min-width: 768px) { | ||
body { | ||
background: #fefefe; | ||
} | ||
|
||
.row { | ||
display: -webkit-box; | ||
display: -webkit-flex; | ||
display: -ms-flexbox; | ||
display: flex; | ||
-webkit-align-items: stretch; | ||
} | ||
|
||
.title { | ||
position: relative; | ||
color: #FFF; | ||
display: -webkit-box; | ||
display: -webkit-flex; | ||
display: -ms-flexbox; | ||
display: flex; | ||
-webkit-flex-shrink: 0; | ||
-ms-flex-negative: 0; | ||
flex-shrink: 0; | ||
width: 50px; | ||
padding: 0; | ||
} | ||
|
||
.title span { | ||
/* Abs positioning makes it not take up vert space */ | ||
position: absolute; | ||
bottom: -10px; | ||
left: 3px; | ||
|
||
/* Border is the new background */ | ||
background: none; | ||
|
||
/* Rotate from top left corner (not default) */ | ||
-webkit-transform-origin: 0 0; | ||
-moz-transform-origin: 0 0; | ||
-ms-transform-origin: 0 0; | ||
-o-transform-origin: 0 0; | ||
|
||
-webkit-transform: rotate(-90deg); | ||
-moz-transform: rotate(-90deg); | ||
-ms-transform: rotate(-90deg); | ||
-o-transform: rotate(-90deg); | ||
} | ||
|
||
/* | ||
.title span:before { | ||
content: ''; | ||
padding-top: 100%; | ||
height: 0; | ||
display: block; | ||
} | ||
*/ | ||
|
||
.cards { | ||
-webkit-flex-basis: 32%; | ||
-ms-flex-preferred-size: 32%; | ||
flex-basis: 32%; | ||
} | ||
} | ||
|
||
@media print { | ||
|
||
@page { margin:0in; } | ||
|
||
body { | ||
width: 100%; | ||
margin: 0; | ||
font-size: 0.7em; | ||
} | ||
|
||
.row { | ||
text-align: center; | ||
} | ||
|
||
.cards { | ||
float: none; | ||
display: inline-block; | ||
margin: 0; | ||
width: 6cm; | ||
height: 2.5cm; | ||
text-align: left; | ||
padding: 0; | ||
} | ||
|
||
.title, | ||
.cards a, | ||
.cards img { | ||
display: none; | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.