Browse Source

minor update

unknown 9 years ago
parent
commit
bef81e5985
3 changed files with 7 additions and 3 deletions
  1. 4 0
      app/app.css
  2. 1 1
      app/app.js
  3. 2 2
      app/templates/room.html

+ 4 - 0
app/app.css

@@ -653,6 +653,10 @@ footer a:hover{
   margin-left: 50%;
   margin-left: 50%;
   font-size: 2em;
   font-size: 2em;
 }
 }
+#side-panel{
+  height: 100vh;
+  background-color: rgba(255,255,255,0.4);
+}
 .embed-responsive{
 .embed-responsive{
   margin-top: 15px;
   margin-top: 15px;
 }
 }

+ 1 - 1
app/app.js

@@ -682,7 +682,7 @@ if (Meteor.isServer) {
     function getSongsByType(type) {
     function getSongsByType(type) {
         if (type === "edm") {
         if (type === "edm") {
             return [
             return [
-                {id: "aE2GCa-_nyU", title: "Radioactive - Lindsey Stirling and Pentatonix", duration: getSongDuration("Radioactive - Lindsey Stirling and Pentatonix", "Lindsey Stirling, Pentatonix"), artist: "Lindsey Stirling, Pentatonix", type: "youtube", img: "https://i.scdn.co/image/62167a9007cef2e8ef13ab1d93019312b9b03655"},
+                {id: "aE2GCa-_nyU", title: "Radioactive", duration: getSongDuration("Radioactive - Lindsey Stirling and Pentatonix", "Lindsey Stirling, Pentatonix"), artist: "Lindsey Stirling, Pentatonix", type: "youtube", img: "https://i.scdn.co/image/62167a9007cef2e8ef13ab1d93019312b9b03655"},
                 {id: "aHjpOzsQ9YI", title: "Crystallize", artist: "Lindsey Stirling", duration: getSongDuration("Crystallize", "Lindsey Stirling"), type: "youtube", img: "https://i.scdn.co/image/b0c1ccdd0cd7bcda741ccc1c3e036f4ed2e52312"}
                 {id: "aHjpOzsQ9YI", title: "Crystallize", artist: "Lindsey Stirling", duration: getSongDuration("Crystallize", "Lindsey Stirling"), type: "youtube", img: "https://i.scdn.co/image/b0c1ccdd0cd7bcda741ccc1c3e036f4ed2e52312"}
             ];
             ];
         } else if (type === "nightcore") {
         } else if (type === "nightcore") {

+ 2 - 2
app/templates/room.html

@@ -2,7 +2,7 @@
     <div class="landing">
     <div class="landing">
         {{#if loaded}}
         {{#if loaded}}
           <div class="row">
           <div class="row">
-            <div class="col-md-8" id="station-main">
+            <div class="col-md-9" id="station-main">
               <nav>
               <nav>
                 <a class="back" href="/"><i class="fa fa-chevron-left"></i></a>
                 <a class="back" href="/"><i class="fa fa-chevron-left"></i></a>
                 <h3>{{{type}}}</h3>
                 <h3>{{{type}}}</h3>
@@ -24,7 +24,7 @@
               </div>
               </div>
               <button type="button" id="song-modal" class="button-nowidth col-md-4 col-sm-4 col-xs-4 col-md-offset-4 col-sm-offset-4 col-xs-offset-4" data-toggle="modal" data-target="#myModal">Add songs</button>
               <button type="button" id="song-modal" class="button-nowidth col-md-4 col-sm-4 col-xs-4 col-md-offset-4 col-sm-offset-4 col-xs-offset-4" data-toggle="modal" data-target="#myModal">Add songs</button>
             </div>
             </div>
-            <div class="col-md-4" id="side-panel">
+            <div class="col-md-3" id="side-panel">
 
 
             </div>
             </div>
           </div>
           </div>