Skip to content

Commit

Permalink
First page commit
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea.soverini authored and andrea.soverini committed Nov 26, 2014
0 parents commit 476d75c
Show file tree
Hide file tree
Showing 183 changed files with 1,043 additions and 0 deletions.
143 changes: 143 additions & 0 deletions css/jquery-labelauty.css
@@ -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 );
}
235 changes: 235 additions & 0 deletions css/style.css
@@ -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;
}
}
Binary file added img/icons128/#Affiliate-Marketing.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Alt-Text.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Back-Link.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Ban.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Bid.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Black-Hat.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Bookmarking.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Bounce-Rate.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Buying-Funnel.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#CPT.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Click-Fraud.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Cloacking.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Clustering.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Content.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Contextual-Ads.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Cost-per-Click-(CPC).png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Dead-Link.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Directory.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Duplicate-Content.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Entry-Page.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Eye-Tracking.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Filter.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Geo-Targeting.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Html.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Impression.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons128/#Inbound-Link.png
Binary file added img/icons128/#Indexing.png
Binary file added img/icons128/#Invisible-Web.png
Binary file added img/icons128/#Keywords.png
Binary file added img/icons128/#Landing-Page.png
Binary file added img/icons128/#Link-Building.png
Binary file added img/icons128/#Meta-Tags.png
Binary file added img/icons128/#PageRank.png
Binary file added img/icons128/#Pay-per-Click-(PPC).png
Binary file added img/icons128/#Penalty.png
Binary file added img/icons128/#Positioning.png
Binary file added img/icons128/#Query.png
Binary file added img/icons128/#ROI.png
Binary file added img/icons128/#Redirect.png
Binary file added img/icons128/#Server.png
Binary file added img/icons128/#SiteMap.png
Binary file added img/icons128/#Snippet.png
Binary file added img/icons128/#Social-Media.png
Binary file added img/icons128/#TLD.png
Binary file added img/icons128/#Target.png
Binary file added img/icons128/#Title-Tag.png
Binary file added img/icons128/#URL.png
Binary file added img/icons128/#Unique-Visitor.png
Binary file added img/icons128/#White-Hat.png
Binary file added img/icons128/#audio-cassetta.png
Binary file added img/icons128/#bag.png
Binary file added img/icons128/#books.png
Binary file added img/icons128/#box.png
Binary file added img/icons128/#calculator.png
Binary file added img/icons128/#calendar.png
Binary file added img/icons128/#chair.png
Binary file added img/icons128/#coffee-biscuit.png
Binary file added img/icons128/#document-holder.png
Binary file added img/icons128/#drawer.png
Binary file added img/icons128/#graphic.png
Binary file added img/icons128/#inbox.png
Binary file added img/icons128/#keys.png
Binary file added img/icons128/#mail.png
Binary file added img/icons128/#medical-box.png
Binary file added img/icons128/#old-phone.png
Binary file added img/icons128/#organizer.png
Binary file added img/icons128/#plant.png
Binary file added img/icons128/#printer.png
Binary file added img/icons128/#trash.png
Binary file added img/icons128/#usb-pen.png
Binary file added img/icons128/API.png
Binary file added img/icons128/Algorithm.png
Binary file added img/icons128/Article-Marketing.png
Binary file added img/icons128/Blog.png
Binary file added img/icons128/Conversion-Rate.png
Binary file added img/icons128/Crowler-Spider-01.png
Binary file added img/icons128/Deep-Crawl.png
Binary file added img/icons128/Dynamic-Content.png
Binary file added img/icons128/E-Commerce.png
Binary file added img/icons128/Everflux.png
Binary file added img/icons128/Exit-Page.png
Binary file added img/icons128/Heading-Tag.png
Binary file added img/icons128/Keyword-Density.png
Binary file added img/icons128/Optimization.png
Binary file added img/icons128/Spam.png
Binary file added img/icons128/Squeeze-Page.png
Binary file added img/icons128/Usability.png
Binary file added img/icons128/User-Experience.png
Binary file added img/icons128/Viral-Marketing.png
Binary file added img/icons128/Web-Analytics.png
Binary file added img/icons128/ab-testing.png
Binary file added img/icons128/beer.png
Binary file added img/icons128/business-card.png
Binary file added img/icons128/cell.png
Binary file added img/icons128/computer.png
Binary file added img/icons128/lunch.png
Binary file added img/icons128/mac.png
Binary file added img/icons128/pen-ink.png
Binary file added img/icons128/search-document.png
Binary file added img/icons128/sofa.png
Binary file added img/icons128/target-copy.png
Binary file added img/icons128/typewriter.png
Binary file added img/icons64/#API.png
Binary file added img/icons64/#Affiliate-Marketing.png
Binary file added img/icons64/#Alt-Text.png
Binary file added img/icons64/#Article-Marketing.png
Binary file added img/icons64/#Back-Link.png
Binary file added img/icons64/#Ban.png
Binary file added img/icons64/#Bid.png
Binary file added img/icons64/#Black-Hat.png
Binary file added img/icons64/#Blog.png
Binary file added img/icons64/#Bookmarking.png
Binary file added img/icons64/#Bounce-Rate.png
Binary file added img/icons64/#Buying-Funnel.png
Binary file added img/icons64/#CPT.png
Binary file added img/icons64/#Click-Fraud.png
Binary file added img/icons64/#Cloacking.png
Binary file added img/icons64/#Clustering.png
Binary file added img/icons64/#Content.png
Binary file added img/icons64/#Contextual-Ads.png
Binary file added img/icons64/#Conversion-Rate.png
Binary file added img/icons64/#Cost-per-Click-(CPC).png
Binary file added img/icons64/#Dead-Link.png
Binary file added img/icons64/#Directory.png
Binary file added img/icons64/#Duplicate-Content.png
Binary file added img/icons64/#Dynamic-Content.png
Binary file added img/icons64/#E-Commerce.png
Binary file added img/icons64/#Entry-Page.png
Binary file added img/icons64/#Everflux.png
Binary file added img/icons64/#Exit-Page.png
Binary file added img/icons64/#Eye-Tracking.png
Binary file added img/icons64/#Filter.png
Binary file added img/icons64/#Geo-Targeting.png
Binary file added img/icons64/#Heading-Tag.png
Binary file added img/icons64/#Html.png
Binary file added img/icons64/#Impression.png
Binary file added img/icons64/#Inbound-Link.png
Binary file added img/icons64/#Indexing.png
Binary file added img/icons64/#Invisible-Web.png
Binary file added img/icons64/#Keywords.png
Binary file added img/icons64/#Landing-Page.png
Binary file added img/icons64/#Link-Building.png
Binary file added img/icons64/#Meta-Tags.png
Binary file added img/icons64/#Optimization.png
Binary file added img/icons64/#PageRank.png
Binary file added img/icons64/#Pay-per-Click-(PPC).png
Binary file added img/icons64/#Penalty.png
Binary file added img/icons64/#Positioning.png
Binary file added img/icons64/#Query.png
Binary file added img/icons64/#ROI.png
Binary file added img/icons64/#Redirect.png
Binary file added img/icons64/#Server.png
Binary file added img/icons64/#SiteMap.png
Binary file added img/icons64/#Snippet.png
Binary file added img/icons64/#Social-Media.png
Binary file added img/icons64/#Spam.png
Binary file added img/icons64/#Squeeze-Page.png
Binary file added img/icons64/#TLD.png
Binary file added img/icons64/#Target.png
Binary file added img/icons64/#Title-Tag.png
Binary file added img/icons64/#URL.png
Binary file added img/icons64/#Unique-Visitor.png
Binary file added img/icons64/#Usability.png
Binary file added img/icons64/#User-Experience.png
Binary file added img/icons64/#Viral-Marketing.png
Binary file added img/icons64/#White-Hat.png
Binary file added img/icons64/Algorithm.png
Binary file added img/icons64/Crowler-Spider-01.png
Binary file added img/icons64/Deep-Crawl.png
Binary file added img/icons64/Keyword-Density.png
Binary file added img/icons64/Web-Analytics.png
Binary file added img/icons64/ab-testing.png
Binary file added img/input-checked.png
Binary file added img/input-unchecked.png

0 comments on commit 476d75c

Please sign in to comment.