-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path_pagniator.scss
More file actions
78 lines (67 loc) · 1.37 KB
/
_pagniator.scss
File metadata and controls
78 lines (67 loc) · 1.37 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
.pagination {
text-align: center;
font-weight: bold;
display: flex;
justify-content: space-between;
max-width: 50rem;
margin: auto;
padding-inline-start: 20px;
padding-inline-end: 20px;
animation: all 0.4s ease-in;
li {
display: inline;
text-align: center;
// background: #bf112b;
background: #bf112b38;
border-radius: 30px;
font-size: 20px;
font-family: monospace;
color: black;
padding: 1rem;
&:hover {
background: #ff7777 !important;
}
}
a {
text-decoration: auto;
}
a:hover {
background: #ff7777 !important;
}
.pagination__item--current {
color: white;
background-color: #bf112b;
}
.pagination__item {
animation: all 0.4s ease-in;
}
@media only screen and (max-width: 600px) {
.pagination {
font-size: 1rem;
padding-inline-start: 20px;
padding-inline-end: 20px;
}
.pagination__item {
font-size: 1rem;
padding: 0.7em;
}
}
@media only screen and (max-width: 500px) {
.pagination__item {
font-size: 1rem;
padding: 0.5em;
}
}
@media only screen and (max-width: 400px) {
.pagination__item {
font-size: 1rem;
padding: 0.5em;
}
.pagination {
font-size: 1rem;
color: red;
padding-inline-start: 20px !important;
padding-inline-end: 20px !important;
}
}
}