OSDN Git Service

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