Commit 5221dbe0 authored by Protocole's avatar Protocole
Browse files

Update Concept, Rm Bounce & fix button

parent dd7bb33c
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -229,6 +229,10 @@
  }
}
.heart {
  animation: heart 1000ms infinite;
  /** animation: heart 1000ms infinite; Making the spaceship bounce **/
  padding-left: 5px;
}

.md-button.md-button-center {
    display: none;
}
 No newline at end of file
+4 −2
Original line number Diff line number Diff line
var $buttons = document.getElementsByClassName("md-button-center");
for (let i = 0; i < $buttons.length; i++) 
    $buttons[i].parentNode.setAttribute("style", "text-align:center");   
 No newline at end of file
for (let i = 0; i < $buttons.length; i++)  {
    $buttons[i].parentNode.setAttribute("style", "text-align:center;");   
    $buttons[i].setAttribute("style", "display: inline-block");   
}
 No newline at end of file