Skip to content

Instantly share code, notes, and snippets.

@blogcacanid
Created October 19, 2020 10:03
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 blogcacanid/adfb161164a28a0f0b7b425800cfaf19 to your computer and use it in GitHub Desktop.
Save blogcacanid/adfb161164a28a0f0b7b425800cfaf19 to your computer and use it in GitHub Desktop.
App.css CRUD Pagination Laravel 7 React JS
.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
}
.pagination a:hover:not(.active) {
background-color: #ddd;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment