-
Notifications
You must be signed in to change notification settings - Fork 0
/
pagination.component.scss
90 lines (74 loc) · 1.36 KB
/
pagination.component.scss
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
/* pagination { */
.rpp-label {
font-size: 13px;
margin-top: 5px;
color: #111;
}
.ng-select.ng-select-single .ng-select-container {
height: 36px;
width: 72px;
}
.rpp-select {
margin: 0 20px;
}
::ng-deep .ng-select.ng-select-single .ng-select-container {
height: 36px;
width: 75px;
border: 0;
background: #000;
}
.pages-container {
padding-top: 7px;
margin-left: 15px;
display: flex;
}
.page {
color: #000;
background-color: #fff;
font-size: 11px;
display: flex;
text-align: center;
padding: 2px;
width: 30px;
cursor: pointer;
height: 28px;
}
.page span {
margin: auto;
}
.next-page,
.prev-page,
.last-page {
background: #007278;
color: #fff;
}
.next-page span,
.prev-page span {
font-size: 18px;
}
.page:hover {
background-color: #007278;
border: 1px solid #007278;
color: #fff;
}
.page-sep {
display: inline-block;
margin: 0px 4px;
}
.active-page {
background-color: #007278;
border: 1px solid #007278;
color: #fff;
}
.results-count {
line-height: 3;
}
/* } pagination */
@media screen and (max-width: 768px) {
.d-flex {
display: flex !important;
flex-direction: column;
align-items: center;
padding: 5% 0;
}
}