diff options
author | fahimkhan | 2016-08-22 12:31:40 +0530 |
---|---|---|
committer | fahimkhan | 2016-08-22 12:31:40 +0530 |
commit | 953ddcbb88621b358abd74fc12de5b06a3fc351d (patch) | |
tree | 134913a4c5c90f709627d6de6f2b373af92a38e1 | |
parent | 74ce1f5b744d113cfc7f2c67c8cf22d9950e8a14 (diff) | |
download | Online-NgSpice-Simulator-953ddcbb88621b358abd74fc12de5b06a3fc351d.tar.gz Online-NgSpice-Simulator-953ddcbb88621b358abd74fc12de5b06a3fc351d.tar.bz2 Online-NgSpice-Simulator-953ddcbb88621b358abd74fc12de5b06a3fc351d.zip |
Footer color changed
-rw-r--r-- | public/css/customstylesheet.css | 4 | ||||
-rw-r--r-- | routes/routes.js | 3 | ||||
-rw-r--r-- | views/index.html | 7 |
3 files changed, 10 insertions, 4 deletions
diff --git a/public/css/customstylesheet.css b/public/css/customstylesheet.css index 75bf187..89e3202 100644 --- a/public/css/customstylesheet.css +++ b/public/css/customstylesheet.css @@ -13,3 +13,7 @@ body { text-align: left; width: 100%; } + +.footer{ + background: #222222; +} diff --git a/routes/routes.js b/routes/routes.js index ca07fba..5dbda92 100644 --- a/routes/routes.js +++ b/routes/routes.js @@ -73,7 +73,8 @@ module.exports = function(express,app,fs,os,io,PythonShell,scriptPath){ { //Adding Plot component in a file - sed('-i', 'run', 'run \n print allv > /tmp/plot_allv_'+socketID+'.txt \n print alli > /tmp/plot_alli_'+socketID+'.txt', fileName); + sed('-i', 'run', 'run \n print allv > /tmp/plot_allv_'+socketID+'.txt \n \ + print alli > /tmp/plot_alli_'+socketID+'.txt', fileName); } diff --git a/views/index.html b/views/index.html index e3c8d72..6f18eee 100644 --- a/views/index.html +++ b/views/index.html @@ -90,7 +90,7 @@ v1 in gnd pwl(0m 0 0.5m 5 50m 5 50.5m 0 100m 0) <hr>
<div id="messages">
- <p class="fromServer">Server acknowledgement go here</p>
+ <p class="fromServer">Server acknowledgement goes here</p>
</div>
<div class="container" id="plot" style="display:none;">
@@ -113,9 +113,10 @@ v1 in gnd pwl(0m 0 0.5m 5 50m 5 50.5m 0 100m 0) </div>
<footer class="footer">
<div class="container">
- <hr>
+ <!-- <hr> -->
<div class="pull-right">
- <!-- <p style="text-align:center;">This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="license" target="_blank">Creative Commons Attribution-ShareAlike 4.0 International License.</a><br><a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="license" target="_blank"><img src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png"></a> </p>-->
+ <!-- <p style="text-align:center;">This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="license" target="_blank">Creative Commons Attribution-ShareAlike 4.0 International License.</a><br><a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="license" target="_blank"><img src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png"></a>
+ </p> -->
<p>© 2016 FOSSEE, IIT Bombay</p>
</div>
|