X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=testing%2FMCTXWeb%2Fpublic_html%2Fstatic%2Fstyle.css;h=85818c9c1b6139f3190e9f6f4c3caf006693662b;hb=6251ae03b906a9603e8d8ed9ac74b8339a57ca7b;hp=f12cfdff1827c7eb87ba6e9559fd5d0410e7a04b;hpb=bb0959bbec05c36ab1118ddefc4894faf28f0fa0;p=matches%2FMCTX3420.git diff --git a/testing/MCTXWeb/public_html/static/style.css b/testing/MCTXWeb/public_html/static/style.css index f12cfdf..85818c9 100644 --- a/testing/MCTXWeb/public_html/static/style.css +++ b/testing/MCTXWeb/public_html/static/style.css @@ -37,6 +37,16 @@ a:active { color: #0066BB; } +.pass { + color: #7AE309; + font-weight: bold; +} + +.fail { + color: #E30909; + font-weight: bold +} + div.centre { text-align: center; } @@ -166,6 +176,7 @@ input[type="text"]:focus, input[type="password"]:focus { #content { padding: 1em 2em; + /*display: none; Enable in non-debug mode*/ } #sidebar{ @@ -220,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; @@ -233,7 +265,7 @@ input[type="text"]:focus, input[type="password"]:focus { } /** For login.html **/ -#login { +#login-container { margin: 0 auto; width: 400px; padding: 1.8em 0 0; @@ -241,19 +273,23 @@ input[type="text"]:focus, input[type="password"]:focus { line-height: 1.8em; } -#login form { +#login-container form { padding: 1em 2em; } -#login input { +#login-container input { font-size: 24px; } -#login label { +#login-container label { font-size: 14px; } -#login input[type=submit], #login input[type=submit] { +#login-container input[type=submit] { font-size: inherit; padding: 0.4em 0.8em; -} \ No newline at end of file +} + +#login-container #result { + clear: both; +}