A Pen by Sean Wilson on CodePen.
Created
April 4, 2016 03:17
-
-
Save seanc/ba22b62c931c6208edf05d98ca8e356a to your computer and use it in GitHub Desktop.
TripleSkins 404
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
link(rel="stylesheet", href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800") | |
link(rel="stylesheet", href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css") | |
.app | |
.overlay | |
.wrapper | |
i.icon.fa.fa-frown-o | |
h1.title TripleSkins is undergoing improvements. | |
p.byline We'll be back soon. We #[b promise]. | |
.social | |
a(href="#") #[i.fa.fa-twitter] | |
a(href="#") #[i.fa.fa-youtube-play] |
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
(function($) { | |
$(function() { | |
$('.app').tubular({ | |
videoId: 'OczqXW30hNg' | |
}) | |
}); | |
}(jQuery)); |
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
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script> | |
<script src="https://cdn.lukej.me/jquery.tubular/1.0.1/jquery.tubular.1.0.js"></script> |
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
$gray: #222222; | |
$red: #e74c3c; | |
$gold: #F9AE42; | |
body, html { | |
margin: 0; | |
padding: 0; | |
height: 100%; | |
font-family: 'Open Sans', sans-serif; | |
} | |
.app { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
} | |
.overlay { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 666; | |
background: rgba(#000, 0.9); | |
} | |
.wrapper { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
flex-direction: column; | |
text-align: center; | |
z-index: 999; | |
} | |
.icon { | |
font-size: 15em !important; | |
color: $red; | |
} | |
.title { | |
color: $red; | |
} | |
.byline { | |
color: $red; | |
font-size: 1.3em; | |
font-weight: 300; | |
} | |
.social { | |
position: absolute; | |
bottom: 15px; | |
right: 15px; | |
> a { | |
color: $red; | |
margin: 0 8px; | |
font-size: 1.5em; | |
text-decoration: none; | |
&:hover { | |
color: darken($red, 5%); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment