Skip to content
This repository has been archived by the owner on May 16, 2020. It is now read-only.

Commit

Permalink
Improved film reel.
Browse files Browse the repository at this point in the history
  • Loading branch information
jace committed Jul 5, 2011
1 parent d5d6516 commit 1f917c7
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 59 deletions.
116 changes: 64 additions & 52 deletions sass/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -627,69 +627,81 @@ hr {
}

#speaker-videos {
background-color: #BCEEF7;
padding-top: 20px;
background-color: #BCEEF7;
padding-top: 20px;
}

#videos {
padding:20px 0;
h2 {
text-align: center;
color: #383839;
}
padding:20px 0;
h2 {
text-align: center;
color: #383839;
}
}

#video-reel {
padding: 20px;
//@include border-radius(6px);
background-color: rgba(0,20,30,0.3);
border-top: 5px dotted #777;
border-bottom: 5px dotted #777;
margin-bottom: 1em;
@include box-shadow(rgba(0,20,30,0.3) 0 0 3px);

ul {
text-align:center;
list-style-type: none;
margin:0;
}
position: relative;
padding: 20px;
background-color: rgba(0,20,30,0.3);
margin-bottom: 1em;

li {
display: inline-block;

a,img {
@include transition-duration(0.3s);
@include transition-timing-function(ease-in);
&:before, &:after {
display: block;
content: "";
position: absolute;
left: 0;
right: 0;
border-top: 5px dotted #bceef7;
}
&:before {
top: 5px;
}
&:after {
bottom: 5px;
}

a {
color: #036;
@include text-shadow(#EEE 0 0 2px);
ul {
text-align:center;
list-style-type: none;
margin:0;
}

img {
display: block;
border: 0 none;
background-color: #FFF;
margin:10px;
@include box-shadow(#000 0 0 4px);
@include border-radius(6px);
}

&:hover{
img {
//@include scale(1.1);
@include box-shadow(#fff 0 0 20px);
@include border-radius(10px);
}
li {
display: inline-block;

a {
@include text-shadow(#fff 0 0 10px);
}
a,img {
@include transition-duration(0.3s);
@include transition-timing-function(ease-in);
}

a {
color: #036;
@include text-shadow(#EEE 0 0 2px);
}

img {
display: block;
border: 0 none;
background-color: #FFF;
margin:10px;
@include box-shadow(#000 0 0 4px);
@include border-radius(6px);
}

&:hover{
img {
//@include scale(1.1);
@include box-shadow(#fff 0 0 20px);
@include border-radius(10px);
}

a {
@include text-shadow(#fff 0 0 10px);
}
}
}
}

&.playing {
&.playing {
position: fixed;
bottom: 10px;
left: 0;
Expand All @@ -702,10 +714,10 @@ hr {
border-color: #FFF;
border-width: 1px 0;

b {
display: none;
b {
display: none;
}
}
}
}


Expand Down
21 changes: 15 additions & 6 deletions www/css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -999,15 +999,24 @@ hr {
}

#video-reel {
position: relative;
padding: 20px;
background-color: rgba(0, 20, 30, 0.3);
border-top: 5px dotted #777;
border-bottom: 5px dotted #777;
margin-bottom: 1em;
-moz-box-shadow: rgba(0, 20, 30, 0.3) 0 0 3px;
-webkit-box-shadow: rgba(0, 20, 30, 0.3) 0 0 3px;
-o-box-shadow: rgba(0, 20, 30, 0.3) 0 0 3px;
box-shadow: rgba(0, 20, 30, 0.3) 0 0 3px;
}
#video-reel:before, #video-reel:after {
display: block;
content: "";
position: absolute;
left: 0;
right: 0;
border-top: 5px dotted #bceef7;
}
#video-reel:before {
top: 5px;
}
#video-reel:after {
bottom: 5px;
}
#video-reel ul {
text-align: center;
Expand Down
2 changes: 1 addition & 1 deletion www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<link rel="shortcut icon" href="img/favicon.ico"/>

<!-- Stylesheets -->
<link href="css/screen.css?v=18" rel="stylesheet" type="text/css" />
<link href="css/screen.css?v=19" rel="stylesheet" type="text/css" />
<!--[if IE]>
<link href="css/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
<![endif]-->
Expand Down

0 comments on commit 1f917c7

Please sign in to comment.