-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.css
67 lines (57 loc) · 1.37 KB
/
index.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
/* alice.box 样式模块 */
.ui-box {
border: 1px solid #ccc;
zoom: 1;
font-size: 12px;
margin: 0;
padding: 0;
border-bottom: none;
}
.ui-box:after {
clear: both;
content: " ";
display: block;
font-size: 0;
height: 0;
visibility: hidden;
}
.ui-box-follow /*--使用在box和上面的box相连的情况下 --*/ {
border-top: none;
}
.ui-box-head {
border-bottom: 1px solid #ccc;
position: relative;
padding: 10px;
height: 16px;
line-height: 16px;
background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#f9f9f9));
background: -moz-linear-gradient(top, #fcfcfc, #f9f9f9);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f9f9f9');
background: -o-linear-gradient(top, #fcfcfc, #f9f9f9);
background: linear-gradient(top, #fcfcfc, #f9f9f9);
zoom: 1;
}
.ui-box-head .ui-box-head-title {
color: #656565;
font-size: 14px;
font-weight: bold;
float: left;
display: inline;
margin: 0;
padding: 0;
}
.ui-box-head .ui-box-head-more {
float: right;
}
.ui-box-head .ui-box-head-text {
margin-left: 10px;
color: #808080;
float: left;
}
.ui-box-container {
background: #fff;
border-bottom: 1px solid #ccc;
}
.ui-box-content /* 可选,用于默认有内边距的box */ {
padding: 10px;
}