style.css
2.1 KB
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
.xn-directive-page {
height: 50px;
line-height: 50px;
background: #dddddd;
color: #333;
}
.xn-directive-page span {
display: block;
float: left;
}
.xn-directive-page .disablei {
cursor: not-allowed;
}
.xn-directive-page .f-left {
float: left;
}
.xn-directive-page .w-50 {
width: 50px;
}
.xn-directive-page .pr-10 {
padding-right: 10px;
}
.xn-directive-page .pl-10 {
padding-left: 10px;
}
.xn-directive-page .pr-25 {
padding-right: 25px;
}
.xn-directive-page .pl-25 {
padding-left: 25px;
}
.xn-directive-page .input-box {
display: block;
margin-top: 10px;
}
.xn-directive-page .form-control {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
height: 30px;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 2px;
font-size: 14px;
line-height: 30px;
color: #555;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.xn-directive-page .pagination-right {
display: inline-block;
float: right;
height: 50px;
}
.xn-directive-page .pagination-right .pagination-right-content {
display: inline-block;
height: 30px;
width: 20px;
}
.xn-directive-page .pagination-ico {
display: block;
width: 14px;
height: 14px;
margin-top: 18px;
}
.xn-directive-page .arrow-first {
background: url("images/icon-first.png") left top no-repeat;
background-size: 100%;
}
.xn-directive-page .arrow-left {
background: url("images/icon-left.png") left top no-repeat;
background-size: 100%;
}
.xn-directive-page .arrow-right {
background: url("images/icon-right.png") left top no-repeat;
background-size: 100%;
}
.xn-directive-page .arrow-last {
background: url("images/icon-last.png") left top no-repeat;
background-size: 100%;
}