| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
|
Eric
2015/05/17 17:23:48
This file should go in 'html/templates', alongside
| |
| 2 <html> | |
| 3 <head> | |
|
Oleksandr
2015/06/24 01:22:34
Can't we just add <meta http-equiv="x-ua-compatibl
sergei
2015/06/24 17:31:35
Yes we can, in our case there is no difference.
| |
| 4 <style> | |
| 5 * { | |
| 6 cursor: default; | |
| 7 } | |
| 8 | |
| 9 a { | |
| 10 cursor: pointer; | |
| 11 } | |
| 12 | |
| 13 html, body, div { | |
| 14 margin: 0; | |
| 15 } | |
| 16 .caption { | |
| 17 background-color: #eeeeee; | |
| 18 min-height: 18px; | |
| 19 clear: both; | |
| 20 } | |
| 21 .closeButton { | |
| 22 background-color: grey; | |
| 23 color: white; | |
| 24 font-weight: bold; | |
| 25 font-family: "Consolas, monaco, monospace"; | |
| 26 text-decoration: none; | |
| 27 width: 18px; | |
| 28 height: 18px; | |
| 29 vertical-align: middle; | |
| 30 text-align: center; | |
| 31 margin-right: 10px; | |
| 32 cursor: default; | |
| 33 } | |
| 34 .closeButton:hover { | |
| 35 background-color: red; | |
| 36 text-decoration: none; | |
| 37 } | |
| 38 .title { | |
| 39 font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; | |
| 40 font-size: 14px; | |
| 41 font-style: normal; | |
| 42 font-weight: 400; | |
| 43 line-height: 15.4px; | |
| 44 padding: 5px 5px 2px 10px; | |
| 45 } | |
| 46 .body { | |
| 47 font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; | |
| 48 font-size: 13px; | |
| 49 font-weight: 400; | |
| 50 overflow-x: hidden; | |
| 51 overflow-y: auto; | |
| 52 padding: 5px; | |
| 53 } | |
| 54 </style> | |
| 55 </head> | |
| 56 <body> | |
| 57 <div class="caption"> | |
| 58 <a class="closeButton" style="float: right;" href="#">×</a> | |
| 59 <div class="title"><!--Title--></div> | |
| 60 </div> | |
| 61 <div class="body"><!--Body--></div> | |
| 62 </body> | |
| 63 </html> | |
| OLD | NEW |