-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
— Embedded SNC Playlist in body. — Placed awesome logo at top — Working on footer links.
- Loading branch information
1 parent
c132f37
commit d839404
Showing
4 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
$(document).ready(function() { | ||
|
||
}) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<LINK rel=StyleSheet HREF="style.css"> | ||
<html> | ||
<script src="http://code.jquery.com/jquery-latest.js"></script> | ||
<script src="awesame.js"></script> | ||
|
||
<head> | ||
<title>awesame</title> | ||
</head> | ||
|
||
<body> | ||
<div id="container"> | ||
|
||
<div id="header"> | ||
<img src="awesame.png" width="50%"> | ||
</div> | ||
|
||
<iframe width="100%" height="450" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/playlists/75292158&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"></iframe> | ||
|
||
<footer> | ||
<p>some text</p> | ||
</footer> | ||
|
||
</div> | ||
</body> | ||
|
||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
#header { | ||
text-align: center; | ||
font-family: helvetica; | ||
font-size: 45px; | ||
} | ||
|
||
#description { | ||
font-family: helvetica; | ||
text-align: center; | ||
} | ||
|
||
#container { | ||
text-align: center; | ||
} | ||
|
||
footer { | ||
position: absolute; | ||
float: bottom, 0; | ||
} | ||
|
||
.input_box { | ||
width: 70%; | ||
height: 50px; | ||
font-size: 20px; | ||
float: center; | ||
text-align: center; | ||
padding-left: 1px; | ||
padding-right: 1px; | ||
margin-bottom: 20px; | ||
border-style: solid; | ||
border-color: black; | ||
border-width: 1px; | ||
font-family: helvetica, arial, sans serif; | ||
} | ||
|
||
#selectors { | ||
border-radius: 15px; | ||
display: inline-block; | ||
width: 80%; | ||
margin: auto 10px; | ||
text-align: center; | ||
padding: 20px; | ||
font-family: helvetica; | ||
} | ||
|
||
/* The following is taken from Bootstrap */ | ||
|
||
.btn { | ||
display: inline-block; | ||
font-size: 16px; | ||
float: center; | ||
*display: inline; | ||
padding: 4px 14px; | ||
margin-bottom: 0; | ||
*margin-left: .3em; | ||
font-size: 14px; | ||
line-height: 20px; | ||
*line-height: 20px; | ||
color: #333333; | ||
text-align: center; | ||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); | ||
vertical-align: middle; | ||
cursor: pointer; | ||
background-color: #f5f5f5; | ||
*background-color: #e6e6e6; | ||
border: 1px solid #bbbbbb; | ||
*border: 0; | ||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); | ||
border-color: #e6e6e6 #e6e6e6 #bfbfbf; | ||
border-bottom-color: #a2a2a2; | ||
-webkit-border-radius: 4px; | ||
-moz-border-radius: 4px; | ||
border-radius: 4px; | ||
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); | ||
filter: progid:dximagetransform.microsoft.gradient(enabled=false); | ||
*zoom: 1; | ||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); | ||
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); | ||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); | ||
} | ||
|
||
.btn:active, | ||
.btn.active { | ||
background-color: #cccccc \9; | ||
} | ||
|
||
.btn:hover { | ||
color: #333333; | ||
text-decoration: none; | ||
background-color: #e6e6e6; | ||
*background-color: #d9d9d9; | ||
|
||
background-position: 0 -15px; | ||
-webkit-transition: background-position 0.1s linear; | ||
-moz-transition: background-position 0.1s linear; | ||
-o-transition: background-position 0.1s linear; | ||
transition: background-position 0.1s linear; | ||
} |