Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 body | |
6 { | |
7 background-color: #f8f6f2; | |
8 font-family: Arial, sans; | |
9 font-size: 12px; | |
10 } | |
11 | |
12 #notification | |
13 { | |
14 position: absolute; | |
15 top: 5px; | |
16 left: 65px; | |
17 } | |
18 | |
19 #notification>h1 | |
20 { | |
21 font-size: 16px; | |
22 } | |
23 | |
24 #notification>* | |
25 { | |
26 margin: 5px; | |
27 } | |
28 </style> | |
29 <script src="notification.js"></script> | |
30 </head> | |
31 <body> | |
32 <img src="icons/abp-48.png"> | |
33 <div id="notification"> | |
34 <h1 id="title"></h1> | |
35 <p id="message"></p> | |
36 </div> | |
37 </body> | |
38 </html> | |
OLD | NEW |