| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <body marginwidth="0" marginheight="0" topmargin="0" leftmargin="6"> | |
| 3 <style type="text/css"> | |
| 4 a:link { color: #0000ff; } | |
| 5 a:vlink { color: #0000ff; } | |
| 6 a:alink { color: #0000ff; } | |
| 7 div.status-message { | |
| 8 margin-bottom: 1em; | |
| 9 padding: 0.5em; | |
| 10 font-weight: normal; | |
| 11 font-size: 16px; | |
| 12 font-family: Verdana, Cursor; | |
| 13 text-align: center; | |
| 14 color: black; | |
| 15 border-top-right-radius: 24px; | |
| 16 -webkit-border-top-right-radius: 24px; | |
| 17 -moz-border-radius-topright: 1em; | |
| 18 border-top-left-radius: 24px; | |
| 19 -webkit-border-top-left-radius: 24px; | |
| 20 -moz-border-radius-topleft: 1em; | |
| 21 box-shadow: 2px 2px 6px rgba(0,0,0,0.6); | |
| 22 -moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); | |
| 23 -webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); | |
| 24 } | |
| 25 span.change_status { | |
| 26 float:right; | |
| 27 font-size: 10px; | |
| 28 } | |
| 29 div.open { | |
| 30 background-color: #8fdf5f; | |
| 31 } | |
| 32 div.closed { | |
| 33 background-color: #e98080; | |
| 34 } | |
| 35 div.maintenance { | |
| 36 background-color: #e0b0ff; | |
| 37 } | |
| 38 div.throttled { | |
| 39 background-color: #fffc6c; | |
| 40 } | |
| 41 </style> | |
| 42 | |
| 43 <center width="100%"> | |
| 44 {% if show_login %} | |
| 45 <div class="status-message maintenance"> | |
| 46 <a target="_blank" href="/">Login Required</a></div> | |
| 47 {% else %} | |
| 48 <a href="/" target="_blank"> | |
| 49 <div class="status-message {{ state }}">{{ message }} </div> | |
| 50 </a> | |
| 51 {% endif %} | |
| 52 </center> | |
| 53 | |
| 54 </body> | |
| 55 </html> | |
| OLD | NEW |