Skip to content

Instantly share code, notes, and snippets.

@DaKaZ
Last active August 29, 2015 14:08
Show Gist options
  • Save DaKaZ/8c780d1665492cfa2b15 to your computer and use it in GitHub Desktop.
Save DaKaZ/8c780d1665492cfa2b15 to your computer and use it in GitHub Desktop.
USeek Player - Heyer Design
/**
* USeek Player - Heyer Design
*/
body {
position: relative;
}
#player {
position: relative;
top: 0;
max-width: 1400px;
width: 700px;
max-height: 1000px;
height: 500px;
background: #BADA55;
padding-left: 5%;
font-size: 1em;
padding-top: 15px;
padding-bottom: 20px;
padding-right: 20px;
}
#wrapper {
position:relative;
background: #c2c2c2;
width: 100%;
height: 100%;
border: 5px solid #c2c2c2;
border-radius: 9px;
-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.75);
box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.75);
}
#header {
position: relative;
background: #c2c2c2;
width: 100%;
height: 25%;
}
#titleBar {
position:relative;
background: #c2c2c2;
width: 100%;
height: 45%;
}
#logo {
background: #c2c2c2;
width: 20%;
height: 100%;
float: left;
}
#social_wrap {
background: #c2c2c2;
width: 15%;
height: 100%;
float: right;
font-size: .7em;
margin-right: 1%;
}
#social_title {
text-align: center;
height: 20%;
}
#social_btn_wrap {
position: relative;
background: #121212;
border-radius: 5px;
height: 70%;
padding: 2px;
}
#social_btn {
display: inline-block;
background: white;
border-radius: 3px;
height: 70%;
width: 100%;
text-align: center;
}
.socialBtn {
display: inline-block;
margin: 0 auto;
width: 20%;
}
#social_footer {
color: #c2c2c2;
text-align: center;
font-size: .5em;
}
#title {
background: #c2c2c2;
width: 70%;
height: 100%;
text-align: center;
}
#objectBar{
position:relative;
width: 100%;
height: 55%;
background: #c2c2c2;
}
#objects{
position:absolute;
width: 93%;
height: 85%;
top: 3%;
padding-left: 6%;
padding-top: 1%;
padding-bottom: -1%;
padding-right: -2%;
-webkit-box-shadow: inset -3px 3px 8px 0px rgba(0,0,0,0.75);
-moz-box-shadow: inset -3px 3px 8px 0px rgba(0,0,0,0.75);
box-shadow: inset -3px 3px 8px 0px rgba(0,0,0,0.75);
background: #51B5C0;
border-radius: 5px;
}
#player_wrap {
position: relative;
width: 100%;
height: 71%;
}
#audio {
width: 100%;
height: 5%;
background: #c2c2c2;
}
#video {
display: block;
background: black;
width: 80%;
height: 95%;
float: left;
}
#colright {
position: relative;
background: c2c2c2;
width: 20%;
height: 100%;
float: right;
}
#points_wrap {
position:absolute;
background: black;
width: 92%;
height: 15%;
top: 1%;
right: 5%;
border-radius: 5px;
}
#rewards{
position:absolute;
width: 85%;
height: 70%;
top: 30%;
left: 3%;
padding-left: 6%;
padding-top: 1%;
padding-bottom: -1%;
padding-right: -3%;
-webkit-box-shadow: inset -3px 3px 8px 0px rgba(0,0,0,0.75);
-moz-box-shadow: inset -3px 3px 8px 0px rgba(0,0,0,0.75);
box-shadow: inset -3px 3px 8px 0px rgba(0,0,0,0.75);
background: #51B5C0;
border-radius: 5px;
}
#footer {
background: #c2c2c2;
height: 4%;
}
#btn_play {
position: absolute;
width: 8%;
height: 48%;
background: #c2c2c2;
border: 5px solid #c2c2c2;
margin-left: -5.2%;
left: 0%;
margin-top: 7.9%;
padding-bottom: -1%;
text-align: center;
z-index: 99;
-webkit-box-shadow: -4px 0px 6px -4px rgba(0,0,0,0.75);
-moz-box-shadow: -4px 0px 6px -4px rgba(0,0,0,0.75);
box-shadow: -4px 0px 6px -4px rgba(0,0,0,0.75);
}
.circleBase {
border-radius: 50%;
behavior: url(PIE.htc); /* remove if you don't care about IE8 */
}
<div id="player">
<div id="wrapper">
<div id="header">
<div id="btn_play" class="circleBase">
</div>
<div id="titleBar">
<div id="logo">
<span>The Logo</span>
</div>
<div id="social_wrap">
<div id="social_title">
Share
</div>
<div id="social_btn_wrap">
<div id="social_btn">
<div class="socialBtn">F</div>
<div class="socialBtn">T</div>
<div class="socialBtn">P</div>
<div class="socialBtn">G</div>
</div>
<div id="social_footer">
And earn more points
</div>
</div>
</div>
<div id="title">
<span>The Title</span>
</div>
</div>
<div id="objectBar">
<div id="objects">
<span>The Objects</span>
</div>
</div>
</div>
<div id="player_wrap">
<div id="colright">
<div id="points_wrap">
</div>
<div id="reward_header">
</div>
<div id="rewards">
</div>
</div>
<div id="audio">
<span>The Audio</span>
</div>
<div id="video">
<span>The Video</span>
</div>
</div>
<div id="footer">
<span>The Footer</span>
</div>
</div>
</div>
// alert('Hello world!');
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment