-
Notifications
You must be signed in to change notification settings - Fork 0
/
_pagination.scss
53 lines (45 loc) · 954 Bytes
/
_pagination.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
.pagination {
font-size: $h5;
font-family: $heading-font-family;
font-weight: 300;
text-align: center;
}
.pagination a, .pagination .disabled {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
background: #fafafa;
border-radius: 0.1875em;
border: 1px solid #f3f3f3;
color: #333333;
padding: .75em 1.5em;
font-size: $h5;
}
.pagination .disabled, .pagination .pagination-meta {
opacity: 0.5;
}
.pagination .pagination-meta {
overflow: hidden;
}
.pagination a:hover, .pagination a:focus {
background: white;
color: #477dca;
}
.pagination a:active {
background: #f7f7f7;
}
.pagination .button {
font-size: 1rem;
font-weight: 300;
letter-spacing: 1px;
}
.button-disabled {
opacity: 0.55;
background-color: #999;
}
.button-disabled:hover,
.button-disabled:active,
.button-disabled:focus {
cursor: not-allowed;
background-color: #999;
}