Browse Source

added GitHub logo to footer

unknown 9 years ago
parent
commit
376921a76d
3 changed files with 11 additions and 6 deletions
  1. 7 1
      app/app.css
  2. 3 5
      app/templates/about.html
  3. 1 0
      app/templates/footer.html

+ 7 - 1
app/app.css

@@ -461,7 +461,7 @@ footer {
   text-align: center;
   width: 100%;
   height: 60px;
-  margin-top: 95px;
+  margin-top: 75px;
   color: white;
   padding-top: 5px;
 }
@@ -474,6 +474,12 @@ footer a{
 footer a:hover{
   color: white;
 }
+footer p{
+  margin: 0 !important;
+}
+footer .fa{
+  font-size: 2em;
+}
 .button-nowidth {
   -webkit-appearance: none;
   -moz-appearance: none;

+ 3 - 5
app/templates/about.html

@@ -1,11 +1,9 @@
 <template name="about">
-    {{> header}}
     <div class="row">
         <div class="about col-md-8 col-md-offset-2">
             <h2>About</h2>
-            <p>
-                &lt;insert description here/>
-            </p>
+            <p>Music App is a modern, open-source music app.</p>
+            <p>Listen to music in one of the various stations, specific to one genre</p>
         </div>
     </div>
-</template>
+</template>

+ 1 - 0
app/templates/footer.html

@@ -5,5 +5,6 @@
         <a href="/terms" class="footerButtons" id="termsButton">Terms |</a>
         <a href="/privacy" class="footerButtons" id="privacyButton">Privacy |</a>
         <a href="/about" class="footerButtons" id="aboutButton">About</a>
+        <p><a href="https://github.com/AkiraLaine/music-app" target="_blank"><i class="fa fa-github"></i></a></p>
     </footer>
 </template>