From 6251ae03b906a9603e8d8ed9ac74b8339a57ca7b Mon Sep 17 00:00:00 2001 From: Sam Moore Date: Wed, 9 Oct 2013 10:06:58 +0800 Subject: [PATCH] Add flot plot to styles Apparently it's not needed, but whatever --- testing/MCTXWeb/public_html/static/style.css | 23 +++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/testing/MCTXWeb/public_html/static/style.css b/testing/MCTXWeb/public_html/static/style.css index 18a6b8e..85818c9 100644 --- a/testing/MCTXWeb/public_html/static/style.css +++ b/testing/MCTXWeb/public_html/static/style.css @@ -231,6 +231,27 @@ input[type="text"]:focus, input[type="password"]:focus { box-shadow: 0 0 0.25em #AAAAAA; } +.plot { + box-sizing: border-box; + width: 850px; + height: 450px; + padding: 20px 15px 15px 15px; + margin: 15px auto 30px auto; + border: 1px solid #ddd; + background: #fff; + background: linear-gradient(#f6f6f6 0, #fff 50px); + background: -o-linear-gradient(#f6f6f6 0, #fff 50px); + background: -ms-linear-gradient(#f6f6f6 0, #fff 50px); + background: -moz-linear-gradient(#f6f6f6 0, #fff 50px); + background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px); + box-shadow: 0 3px 10px rgba(0,0,0,0.15); + -o-box-shadow: 0 3px 10px rgba(0,0,0,0.1); + -ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1); + -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1); + -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1); + font-size:20px; +} + /** Hack **/ .clear { clear: both; @@ -271,4 +292,4 @@ input[type="text"]:focus, input[type="password"]:focus { #login-container #result { clear: both; -} \ No newline at end of file +} -- 2.20.1