You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.5 KiB
81 lines
1.5 KiB
.search-dropdown {
|
|
max-height: 250px;
|
|
overflow-x: hidden;
|
|
position: absolute;
|
|
top: 100%;
|
|
width: 100%;
|
|
background: #f3f3f3;
|
|
z-index: 21;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.search-dropdown p {
|
|
padding: 5px 14px;
|
|
margin-bottom: 0px;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
font-size: 16px !important;
|
|
}
|
|
.search-dropdown a:hover {
|
|
text-decoration: none !important;
|
|
border-bottom: none;
|
|
}
|
|
|
|
|
|
/* Style the header */
|
|
.header {
|
|
color: #f1f1f1;
|
|
background: #fff;
|
|
}
|
|
|
|
/* Page content */
|
|
.content {
|
|
padding: 16px;
|
|
}
|
|
|
|
/* The sticky class is added to the header with JS when it reaches its scroll position */
|
|
.sticky {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 99999;
|
|
}
|
|
|
|
/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
|
|
.sticky + .content {
|
|
padding-top: 102px;
|
|
}
|
|
.pagination li a{
|
|
position: relative;
|
|
float: left;
|
|
padding: 6px 12px;
|
|
margin-left: -1px;
|
|
line-height: 1.42857143;
|
|
color: #337ab7;
|
|
text-decoration: none;
|
|
background-color: #fff;
|
|
border: 1px solid #ddd;
|
|
margin: 10px;
|
|
}
|
|
.listing-pagination{
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-bottom: 40px;
|
|
}
|
|
ul li .active{
|
|
background: #2471a5;
|
|
color: white;
|
|
}
|
|
.blog-image {
|
|
max-height: 200px;
|
|
min-height: 200px;
|
|
width: 100%;
|
|
object-fit: fill;
|
|
border: 1px solid #eee;
|
|
}
|
|
#minP{
|
|
overflow:hidden;
|
|
text-overflow:ellipsis;
|
|
display:-webkit-box;
|
|
-webkit-line-clamp:5;
|
|
-webkit-box-orient:vertical;} |