OSDN Git Service

merged 3.3 beta1
[nucleus-jp/nucleus-jp-ancient.git] / utf8 / nucleus / styles / bookmarklet.css
1 /* 
2         style definitions for the bookmarklet 
3         
4         $Id: bookmarklet.css,v 1.4 2006-07-12 07:11:48 kimitake Exp $
5         $NucleusJP: bookmarklet.css,v 1.3 2005/03/12 06:19:06 kimitake Exp $
6 */
7
8 body {
9         font-size: small;
10         background: #fff;
11         color: #000;
12     font-family: "Trebuchet MS",Trebuchet,"Bitstream Vera Sans",verdana,lucida,arial,helvetica,sans-serif
13 }               
14
15 textarea {
16   font-family: "Hiragino Kaku Gothic Pro W3", "MS PGothic", "Osaka", sans-serif;
17 }
18
19 h1 {
20         border-bottom: 1px dotted gray;
21         font-size: medium;
22         color: #596d9d;
23 }
24
25 /* 
26         Hide switch buttons initially, we'll enable them again if we are sure
27         the browser supports DOM
28 */
29 #switchbuttons {
30         display: none;
31 }
32 /*
33         Hide preview also when no DOM is supported
34 */
35 #preview {
36         display: none;
37 }
38
39 .buttonbar {
40    margin-bottom: 5px;
41    background: rgb(187, 187, 204);
42    padding: 3px;
43 }
44
45 .buttonbar input {
46    background: #C5C5D3;
47     border: 1px solid #CACAD7;
48     border-right: 2px solid #8E8EAB;
49     border-bottom: 2px solid #8E8EAB;
50     color: #000000;
51     font-family: "Trebuchet MS",Trebuchet,"Bitstream Vera Sans",verdana,lucida,arial,helvetica,sans-serif;
52     font-weight: bold;   
53 }
54
55 .contentblock {
56         /*background: #ddd;*/
57         height: 400px;
58         overflow: auto; /* temporary removed, to make the select box work in Mozilla */
59         padding: 1px;
60     margin: 0px;
61         vertical-align: top;
62 }
63
64 .shortcuts {
65         float: right; 
66         text-align: right;
67         font-size: x-small;
68 }
69
70 #options {
71    margin-top:-15px;
72    }
73 #options h2 {
74    margin:15px 0 0 0;
75 }
76
77 h2 {
78    font-size: 1.5em;
79    color: gray;
80     margin-top: 0px;
81     padding-top: 0px;
82     padding-bottom: 0px;
83     margin-top: 0px;
84 }
85
86 a:link, a:visited {
87         color: #1D3565; 
88         font-weight: bold;
89         text-decoration: none;
90 }
91
92 a:hover {
93         text-decoration: underline;
94 }                       
95
96 img { 
97         border: none;
98 }
99
100 .indent {
101         margin-left: 40px;
102 }
103
104 label           { cursor: pointer; }
105
106 table {
107         border: none;
108         width: 95%;
109         border-collapse: collapse;
110         margin-bottom: 10px;
111         margin-top: 10px;       
112 }
113
114 th {
115         background: #bbc;
116         color: #000;
117         font-size: small;
118 }
119
120 th, td {
121         padding: 4px;
122         empty-cells: show;      
123 }
124
125 td {
126         background: #fff;
127         border: 1px solid #ddd;
128         font-size: small;
129         vertical-align: top;
130         text-align: left;
131 }
132
133 td a:link, td a:visited { 
134         text-decoration: underline;
135         color: black;
136         font-weight: normal;
137 }
138 td a:hover {
139         color: #1D3565;
140         text-decoration: underline;
141 }
142
143 td.draft, td.future {
144         background: #ffe;
145 }
146
147 tr.highlighted td {
148         background: green;
149 }
150
151 ul.nobullets {
152         list-style-type: none;
153         padding: 0;
154         margin: 0;
155 }