LEFT | RIGHT |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta http-equiv="x-ua-compatible" content="IE=8"> | 4 <meta http-equiv="x-ua-compatible" content="IE=8"> |
5 <style> | 5 <style> |
6 * { | 6 * { |
7 cursor: default; | 7 cursor: default; |
8 } | 8 } |
9 | 9 |
10 a { | 10 a { |
11 cursor: pointer; | 11 cursor: pointer; |
12 } | 12 } |
13 | 13 |
14 html, body, div { | 14 html, body, div { |
15 margin: 0; | 15 margin: 0; |
16 } | 16 } |
17 .caption { | 17 .caption { |
18 background-color: white; | 18 background-color: white; |
19 min-height: 18px; | 19 min-height: 18px; |
20 clear: both; | 20 clear: both; |
21 margin-bottom: 5px; | |
22 } | 21 } |
23 .closeButton { | 22 .closeButton { |
24 background-color: grey; | 23 background-color: grey; |
25 color: white; | 24 color: white; |
26 font-weight: bold; | 25 font-weight: bold; |
27 font-family: "Consolas, monaco, monospace"; | 26 font-family: "Consolas, monaco, monospace"; |
28 text-decoration: none; | 27 text-decoration: none; |
29 width: 18px; | 28 width: 18px; |
30 height: 18px; | 29 height: 18px; |
31 vertical-align: middle; | 30 vertical-align: middle; |
32 text-align: center; | 31 text-align: center; |
33 margin-right: 10px; | 32 margin-right: 10px; |
34 cursor: default; | 33 cursor: default; |
35 } | 34 } |
36 .closeButton:hover { | 35 .closeButton:hover { |
37 background-color: red; | 36 background-color: red; |
38 text-decoration: none; | 37 text-decoration: none; |
39 } | 38 } |
40 .title { | 39 .title { |
41 font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; | 40 color: #000000; |
42 font-size: 14px; | 41 font-family: Arial, sans-serif; |
43 font-style: normal; | 42 font-size: 16px; |
44 font-weight: 400; | 43 font-weight: bold; |
45 line-height: 15.4px; | 44 padding: 16px 20px 0px 0px; |
46 padding: 5px 5px 2px 10px; | |
47 } | 45 } |
48 .body { | 46 .body { |
49 font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; | 47 font-family: Arial, sans-serif; |
50 font-size: 13px; | 48 font-size: 12px; |
51 font-weight: 400; | 49 font-weight: normal; |
52 overflow-x: hidden; | 50 overflow-x: hidden; |
53 overflow-y: auto; | 51 overflow-y: auto; |
54 padding: 5px; | 52 text-align: justify; |
| 53 padding: 2px 20px 20px 0px; |
55 } | 54 } |
56 </style> | 55 </style> |
57 </head> | 56 </head> |
58 <body> | 57 <body> |
59 <div class="caption"> | 58 <div class="caption"> |
60 <a class="closeButton" style="float: right;" href="#">×</a> | 59 <a class="closeButton" style="float: right;" href="#">×</a> |
61 <div class="title"><!--Title--></div> | 60 <div class="title"><!--Title--></div> |
62 </div> | 61 </div> |
63 <div class="body"><!--Body--></div> | 62 <div class="body"><!--Body--></div> |
64 </body> | 63 </body> |
65 </html> | 64 </html> |
LEFT | RIGHT |