| 1 |
.container { |
| 2 |
align-items: center; |
| 3 |
color: var(--givewp-neutral-900); |
| 4 |
display: flex; |
| 5 |
flex: 1; |
| 6 |
font-size: 0.8125rem; |
| 7 |
font-weight: 600; |
| 8 |
justify-content: space-around; |
| 9 |
margin: 0; |
| 10 |
text-transform: uppercase; |
| 11 |
|
| 12 |
>span:first-child { |
| 13 |
margin-right: auto; |
| 14 |
} |
| 15 |
|
| 16 |
& > * { |
| 17 |
margin-inline-start: 0.125rem; |
| 18 |
margin-inline-end: 0.125rem; |
| 19 |
} |
| 20 |
} |
| 21 |
|
| 22 |
#currentPage { |
| 23 |
border-radius: 0; |
| 24 |
border-color: rgba(221, 221, 221); |
| 25 |
|
| 26 |
&::-webkit-outer-spin-button, |
| 27 |
&::-webkit-inner-spin-button { |
| 28 |
-webkit-appearance: none; |
| 29 |
margin: 0; |
| 30 |
} |
| 31 |
|
| 32 |
&[type=number]=number] { |
| 33 |
-moz-appearance: textfield; |
| 34 |
min-width: 0; |
| 35 |
// Firefox wants an explicit width. |
| 36 |
width: 1.75rem; |
| 37 |
padding: 0.0125rem; |
| 38 |
} |
| 39 |
|
| 40 |
} |
| 41 |
|
| 42 |
.navDirection { |
| 43 |
align-items: flex-end; |
| 44 |
background: none; |
| 45 |
block-size: 1.5rem; |
| 46 |
border: none; |
| 47 |
color: var(--givewp-neutral-900); |
| 48 |
display: flex; |
| 49 |
font-size: 1.5rem; |
| 50 |
font-weight: 400; |
| 51 |
inline-size: 1.5rem; |
| 52 |
justify-content: center; |
| 53 |
padding: 0; |
| 54 |
text-decoration: none; |
| 55 |
transition-duration: .05s; |
| 56 |
transition-property: border, background, color; |
| 57 |
transition-timing-function: ease-in-out; |
| 58 |
} |
| 59 |
|
| 60 |
button[aria-disabled="false"]="false""].navDirection { |
| 61 |
cursor: pointer; |
| 62 |
|
| 63 |
&:hover { |
| 64 |
color: rgba(10, 75, 120); |
| 65 |
} |
| 66 |
} |
| 67 |
|
| 68 |
button[aria-disabled="true"]="true""].navDirection { |
| 69 |
color: rgba(167, 170, 173); |
| 70 |
} |
| 71 |
|
| 72 |
.navElement { |
| 73 |
text-align: center; |
| 74 |
vertical-align: baseline; |
| 75 |
|
| 76 |
&:is(select) { |
| 77 |
border: 0; |
| 78 |
font-size: 0.875rem; |
| 79 |
line-height: 1.43; |
| 80 |
} |
| 81 |
} |
| 82 |
|
| 83 |
.visuallyHidden { |
| 84 |
position: absolute; |
| 85 |
width: 1px; |
| 86 |
height: 1px; |
| 87 |
padding: 0; |
| 88 |
margin: -1px; |
| 89 |
overflow: hidden; |
| 90 |
clip: rect(0, 0, 0, 0); |
| 91 |
white-space: nowrap; |
| 92 |
border-width: 0; |
| 93 |
} |
| 94 |
|