
Untitled
By: a guest on
Jul 29th, 2012 | syntax:
None | size: 2.45 KB | hits: 12 | expires: Never
/**
* Sliding Bookmark Launchpad
*/
* {
margin: 0;
padding:0;
}
h1 {
letter-spacing: 4px;
text-align:center;
color:white;
font-size: 60px;
font-weight: 200;
font-family:Helvetica Neue;
text-shadow: 0px 0px 4px black,1px 1px 1px black;
}
/*=================================================
Main Styles
==================================================*/
#content-slider {
width: 1488px;
margin: 36px auto;
}
#content {
overflow: scroll;
width: 1488px;
}
#content-inner {
width:4464px;
}
.page {
width: 1488px;
float: left;
}
.page ul {
list-style:none;
}
.page li {
float:left;
margin: 14px 33px 14px 33px;
opacity:1;
transition: opacity .1s ease-in;
}
/*change to active class for folders animation*/
.page li:active {
opacity:1;
transition: opacity .1s ease-in;
}
.page ul:active li:not(:active) {
opacity:.7;
transition: opacity .1s ease-in;
}
.page a:active img, .page a:active .folder {
transform: scale(1.1);
}
a img, a .folder {
transition: all ease-in .1s;
}
.page li {
text-align:center;
height:150px;
width: 120px;
}
.page li img {
height:120px;
width:120px;
}
.page a,h3{ margin-top:10px;
font-size: 14px;
font-weight: 300;
text-decoration:none;
color:white;
font-family:Helvetica;
text-shadow: 0px 0px 4px black,1px 1px 1px black;
letter-spacing: 0px;
}
.folder {
padding:5px;
height: 110px;
width: 110px;
background: linear-gradient(rgba(211,211,211,.6),rgba(165,165,165,.7)),white;
border-radius:20px;
box-shadow:1px 1px 8px black;
}
.content {
box-shadow:inset 0px 0px 6px black;
background:url(http://pawelskowronek.me/bookmark_launchpad/bg_folder.png);
border-radius:15px;
width:110px;
height:110px;
}
/*
* Background originally comes from http://www.icloud.com/
*/
/*================================================
Styling the targets.
================================================*/
#content-inner-1:target #content-inner {
transition: margin-left 400ms ease;
margin-left: 0px;
}
#content-inner-2:target #content-inner {
transition: margin-left 400ms ease;
margin-left: -1488px;
}
/*=======================================
Generic styling here.
========================================*/
#nav {
list-style-type: none;
width: 52px;
height: 16px;
margin: 60px auto;
}
#nav li {
float:left;
}
button {
background: white;
width: 8px;
height: 8px;
border-radius: 8px;
border: white;
margin-left: 3px;
margin-right: 4px;
}
button:active {
opacity: .25;
}
button a {
display:block;
}