Skip to content

Instantly share code, notes, and snippets.

@Manntrix
Created November 20, 2019 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Manntrix/fdbe4cffce70035df76b3ac922c95214 to your computer and use it in GitHub Desktop.
Save Manntrix/fdbe4cffce70035df76b3ac922c95214 to your computer and use it in GitHub Desktop.
.pagination {
margin: 15px auto;
display: flex;
list-style: none;
outline: none;
}
.pagination > .active > a{
background-color: #47ccde ;
border-color: #47ccde ;
color: #fff;
}
.pagination > li > a{
border: 1px solid #47ccde ;
padding: 5px 10px;
outline: none;
cursor: pointer;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{
background-color: #47ccde ;
border-color: #47ccde;
outline: none ;
}
.pagination > li > a, .pagination > li > span{
color: #47ccde
}
.pagination > li:first-child > a, .pagination > li:first-child > span, .pagination > li:last-child > a, .pagination > li:last-child > span{
border-radius: unset
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment