Skip to content

Commit 36c224d

Browse files
authored
Create style.css
1 parent 79ddeb4 commit 36c224d

File tree

1 file changed

+99
-0
lines changed

1 file changed

+99
-0
lines changed

css/style.css

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
2+
.pagination {
3+
user-select: none;
4+
}
5+
.pagination .page-numbers {
6+
vertical-align: middle;
7+
line-height: 50px;
8+
white-space: nowrap;
9+
display: inline-block;
10+
padding: 0 10px;
11+
font-weight: 900;
12+
text-decoration: none;
13+
background-color: #fff;
14+
color: rgb(37, 21, 75) !important;
15+
border: 1px solid rgb(37, 21, 75);
16+
height: 52px;
17+
width: auto;
18+
min-width: 52px;
19+
border-radius: 5px;
20+
outline: none;
21+
font-family: 'Brandon Grotesque';
22+
font-size: 20px;
23+
margin: 0 2px;
24+
cursor: pointer;
25+
}
26+
27+
.pagination .page-numbers.disabled {
28+
cursor: default;
29+
pointer-events: none;
30+
color: #eee !important;
31+
}
32+
33+
.pagination .page-numbers.current {
34+
cursor: default;
35+
pointer-events: none;
36+
}
37+
38+
.pagination .page-numbers.current,
39+
.pagination .page-numbers:hover {
40+
background-color: rgb(37, 21, 75);
41+
color: #fff !important;
42+
}
43+
44+
.pagination .page-numbers.dots {
45+
border: 0;
46+
line-height: 42px;
47+
}
48+
49+
.pagination .page-numbers.dots:hover {
50+
background-color: #fff;
51+
cursor: default;
52+
color: rgb(37, 21, 75) !important;
53+
}
54+
55+
.pagination .page-numbers.dots:before {}
56+
57+
.pagination .page-numbers.prev i.fa,
58+
.pagination .page-numbers.next i.fa {
59+
font-size: 32px;
60+
line-height: 52px;
61+
vertical-align: top;
62+
padding: 0 10px;
63+
display: inline-block;
64+
height: 52px;
65+
}
66+
67+
.pagination .page-numbers.prev,
68+
.pagination .page-numbers.next {
69+
border: 0;
70+
}
71+
72+
.pagination .page-numbers.prev:hover,
73+
.pagination .page-numbers.next:hover {
74+
background-color: rgb(37, 21, 75);
75+
}
76+
77+
.pagination .page-numbers.prev:hover i.fa,
78+
.pagination .page-numbers.next:hover i.fa {
79+
color: #fff;
80+
}
81+
82+
@media only screen and (max-width: 767px) {
83+
.pagination .page-numbers {
84+
padding: 0 5px;
85+
min-width: 32px;
86+
height: 32px;
87+
border-radius: 3px;
88+
font-size: 16px;
89+
line-height: 30px;
90+
font-weight: 400;
91+
}
92+
93+
.pagination .page-numbers.prev i.fa,
94+
.pagination .page-numbers.next i.fa {
95+
line-height: 32px;
96+
padding: 0 5px;
97+
height: 32px;
98+
}
99+
}

0 commit comments

Comments
 (0)