use the css in the css folder, silly.
3 files changed, 61 insertions(+), 61 deletions(-)

R resources/public/calculator.css => 
A => resources/public/css/calculator.css
M resources/public/index.html
R resources/public/calculator.css =>  +0 -60
@@ 1,60 0,0 @@ 
-#content {
-    width: 750px;
-    margin-left: auto;
-    margin-right: auto;
-    background-color: white;
-    padding: 1em;
-}
-
-body {
-    background-color: #D0D0D0;
-}
-
-#data {
-    float: left;
-    min-width: 11em;
-}
-
-#control {
-    clear: left;
-}
-
-#stack {
-    border: 1px dashed gray;
-    overflow: auto;
-    margin-bottom: 1ex;
-    float: left;
-}
-
-#user-functions {
-    margin-left: 1em;
-}
-
-#stack h3 {
-    text-align: center;
-}
-
-#data * {
-    padding: 2px;
-    margin-right: 1ex;
-}
-
-#data :last-child {
-    border: 2px solid #20E0D0;
-}
-
-#data :nth-last-child(2){
-    border: 2px solid #FFD000;
-}
-
-#error {
-    background: #FF8080;
-    margin-top: 1ex;
-    margin-bottom: 1ex;
-    float: left;
-
-}
-
-#functions {
-    clear: both;
-}

          
A => resources/public/css/calculator.css +60 -0
@@ 0,0 1,60 @@ 
+#content {
+    width: 750px;
+    margin-left: auto;
+    margin-right: auto;
+    background-color: white;
+    padding: 1em;
+}
+
+body {
+    background-color: #D0D0D0;
+}
+
+#data {
+    float: left;
+    min-width: 11em;
+}
+
+#control {
+    clear: left;
+}
+
+#stack {
+    border: 1px dashed gray;
+    overflow: auto;
+    margin-bottom: 1ex;
+    float: left;
+}
+
+#user-functions {
+    margin-left: 1em;
+}
+
+#stack h3 {
+    text-align: center;
+}
+
+#data * {
+    padding: 2px;
+    margin-right: 1ex;
+}
+
+#data :last-child {
+    border: 2px solid #20E0D0;
+}
+
+#data :nth-last-child(2){
+    border: 2px solid #FFD000;
+}
+
+#error {
+    background: #FF8080;
+    margin-top: 1ex;
+    margin-bottom: 1ex;
+    float: left;
+
+}
+
+#functions {
+    clear: both;
+}

          
M resources/public/index.html +1 -1
@@ 14,7 14,7 @@ 
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
      })();
     </script>
-    <link type="text/css" rel="stylesheet" href="calculator.css" />
+    <link type="text/css" rel="stylesheet" href="css/calculator.css" />
   </head>
   <body>
     <div id="content">