-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathall.css
179 lines (177 loc) · 3.06 KB
/
all.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
a:link
{
/*color: rgb(255,204,0);*/
color: #339;
}
a:visited
{
/*color: rgb(153,204,204);*/
color: #36c;
}
a:hover
{
color: #3f6;
}
a:active
{
/*color: rgb(102,255,0);*/
}
body
{
/*margin-left: 2px;*/
font-family: Verdana, Arial, Helvetica, '文泉驿点阵正黑', '文泉驿正黑', '思源黑体 CN', '思源宋体 CN', '宋体'; /* 让无衬线字体在前面 */
font-weight: 400;
/*
background-color: rgb(51,102,204);
color: rgb(255,255,153);
background-color: #3366cc;
background-color: #39f;
*/
color: #036;
}
table.plain
{
border-top: 1px solid;
border-left: 1px solid;
/*
table-border-color-light: rgb(153,255,204);
table-border-color-dark: rgb(0,0,51);
*/
}
table.plain > thead th
{
background-color: Navy;
color: LightGray;
}
table.plain tr
{
border: 1px solid;
}
table.plain tr th, table.plain tr td
{
border-right: 1px solid;
border-bottom: 1px solid;
}
h1, h2, h3, h4, h5, h6
{
font-family: Verdana, Arial, Helvetica, '文泉驿点阵正黑', '文泉驿正黑', '宋体'; /* 让无衬线字体在前面 */
}
h1
{
/*color: rgb(255,204,0);*/
color: darkblue;
}
h2
{
/*color: rgb(153,255,51);*/
color: darkcyan;
}
h3
{
/*color: rgb(0,255,204);*/
color: grey;
}
h4
{
color: rgb(255,204,0);
}
h5
{
color: rgb(153,255,51);
}
h6
{
color: rgb(0,255,204);
}
[title]
{
background-color: GreenYellow;
cursor: help;
}
/* -------------------------------------------------------------------------- */
#content {
/*height: 320px;*/
}
#footer {
text-align: center;
margin-top: 1em;
padding-top: 1em;
border-top: 1px dashed;
}
.note {
color: green;
/*background-color: #9f9;*/
background-color: LightYellow;
border-style: dotted;
padding: 4px;
}
.warning {
}
.error {
}
.discontinued
{
}
/* -------------------------------------------------------------------------- */
/* 语言工具条 */
/* -------------------------------------------------------------------------- */
/*
利用大图片分割成小图,并设置为背景
参考 http://dev.opera.com/articles/view/31-css-background-images/#sprites
*/
.lang-bar {
float: right;
}
#lang-list {
list-style-type: none;
line-height: 100%;
margin: 0;
padding: 0;
}
#lang-list .lang .flag {
width: 16px;
height: 11px;
background-color: red;
background-position: left top;
background-repeat: no-repeat;
/*
background-size: 24px 24px;
background-origin: content-box;
background-clip: border-box;
*/
background-attachment: scroll;
background-image: url('images/lang-logos.png');
display: inline-block;
}
#lang-list #lang-zh .flag {
background-position: 0px 0px;
}
#lang-list #lang-zh-hk .flag {
background-position: -48px 0px;
}
#lang-list #lang-zh-tw .flag {
background-position: -32px 0px;
}
#lang-list #lang-en .flag {
background-position: -16px 0px;
}
/* -------------------------------------------------------------------------- */
/* 简易问卷 */
/* -------------------------------------------------------------------------- */
.question-number:before
{
content: 'Q';
}
.question-number:after
{
content: ': ';
}
.question-text
{
margin-left: 1em;
}
[id^="__Q"]
{
border: 1px dashed;
margin-bottom: 1em;
}