comparison chrome/content/glayer.css @ 0:c47ec96326ad

initial import
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Fri, 15 Aug 2008 01:57:59 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c47ec96326ad
1 #glayer {
2 position: fixed!important;
3 position: absolute;
4 top:0;
5 left:0;
6 width:100%;
7 height:100%;
8 z-index:100;
9 background-color:#1F1F1F;
10 -moz-opacity: 0.8;
11 opacity:.80;
12 }
13
14 /* Box Base */
15 div.glayer_box {
16 position: fixed!important;
17 position: absolute;
18 z-index: 101;
19 width: 400px;
20 padding: 2px;
21 border: 5px solid #B8B8B8;
22 background-color: #FFFFFF;
23 }
24
25 div.glayer_box_big {
26 position: fixed!important;
27 position: absolute;
28 z-index: 101;
29 width: 500px;
30 padding: 2px;
31 border: 5px solid #B8B8B8;
32 background-color: #FFFFFF;
33 }
34
35 /* Message */
36 p#glayer_message_text {
37 margin: 2px;
38 padding: 2px;
39 text-align: center;
40 }
41
42 /* Alert */
43 p#glayer_alert_text {
44 margin: 2px;
45 padding: 2px;
46 text-align: center;
47 }
48 p#glayer_alert_button {
49 margin: 10px 0 0 0;
50 padding: 0;
51 text-align: center;
52 }
53 input#glayer_alert_ok {
54 font-size: 80%;
55 }
56
57 /* Confirm */
58 p#glayer_confirm_text {
59 margin: 2px;
60 padding: 2px;
61 text-align: center;
62 }
63 p#glayer_confirm_button {
64 margin: 10px 0 0 0;
65 padding: 0;
66 text-align: center;
67 }
68 input#glayer_confirm_ok {
69 margin: 2px;
70 font-size: 80%;
71 }
72 input#glayer_confirm_cancel {
73 margin: 2px;
74 font-size: 80%;
75 }
76