Skip to content
Snippets Groups Projects

simpleblog-3404537: On Advance search need some space below input box and checkbox.

Open Alok Singh requested to merge issue/simpleblog-3404537:simpleblog-3404537 into 2.0.0
3 files
+ 180
7
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 129
5
@@ -727,7 +727,7 @@ textarea:focus {
@@ -727,7 +727,7 @@ textarea:focus {
}
}
.sidebar input[type="search"] {
.sidebar input[type="search"] {
width: 86%;
width: 100%;
}
}
.search-form input[type="search"] {
.search-form input[type="search"] {
@@ -1081,13 +1081,13 @@ form .button {
@@ -1081,13 +1081,13 @@ form .button {
margin: 16px 0;
margin: 16px 0;
}
}
.sidebar form input[type="submit"],
/* .sidebar form input[type="submit"],
.sidebar form input[type="reset"],
.sidebar form input[type="reset"],
.sidebar form input[type="button"],
.sidebar form input[type="button"],
.sidebar form button,
.sidebar form button,
.sidebar form .button {
.sidebar form .button {
width: 100%;
width: 100%;
}
} */
.block h2 {
.block h2 {
border-bottom: 3px solid #efefef;
border-bottom: 3px solid #efefef;
@@ -1723,8 +1723,8 @@ body.is-loading #banner .content {
@@ -1723,8 +1723,8 @@ body.is-loading #banner .content {
}
}
.pager a:hover:not(.active) {
.pager a:hover:not(.active) {
background-color: #ddd;
background-color: #f79c08;
color: #000;
color: #fff;
}
}
.feed-icons a {
.feed-icons a {
@@ -2092,3 +2092,127 @@ ul.menu {
@@ -2092,3 +2092,127 @@ ul.menu {
.node__links ul.links li.comment-new-comments {
.node__links ul.links li.comment-new-comments {
display: none !important;
display: none !important;
}
}
 
 
/* main menu */
 
#block-simpleblog-main-navigation ul li ul {
 
position: absolute;
 
display: none;
 
}
 
#block-simpleblog-main-navigation ul li {
 
position: relative;
 
}
 
#block-simpleblog-main-navigation ul li:hover ul {
 
display: block;
 
width: max-content;
 
max-width: 155px;
 
position: absolute;
 
background-color: #eee;
 
z-index: 9;
 
}
 
 
.node--type-article,
 
.node--type-page {
 
margin-bottom: 40px;
 
}
 
 
/* Readmore button design */
 
article ul.links.inline {
 
list-style: none;
 
padding-left: 0;
 
display: flex;
 
}
 
article ul.links.inline li {
 
margin-right: 15px;
 
margin-top: 20px;
 
}
 
article ul.links.inline li a {
 
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
 
background-color: #ffb132;
 
border-radius: 4px;
 
border: 0;
 
color: #ffffff;
 
cursor: pointer;
 
display: inline-block;
 
height: 2.5em;
 
line-height: 2.5em;
 
padding: 0 2.5em;
 
text-align: center;
 
text-decoration: none;
 
white-space: nowrap;
 
text-transform: uppercase;
 
}
 
article ul.links.inline li a:hover {
 
color: #fff;
 
background-color: #f79c08;
 
border-color: #f79c08;
 
}
 
 
/* Pagination styling */
 
nav.pager ul {
 
display: flex;
 
justify-content: center;
 
padding-left: 0;
 
padding-right: 0;
 
flex-wrap: wrap;
 
margin: 0;
 
}
 
nav.pager ul li {
 
list-style-type: none;
 
}
 
nav.pager ul li {
 
margin-right: 6px;
 
margin-bottom: 15px;
 
}
 
nav.pager ul li a {
 
text-decoration: none;
 
padding: 5px 12px;
 
background: #ffb132;
 
color: #fff;
 
border-radius: 3px;
 
border: 1px solid #ffb132;
 
transition: all 0.3s;
 
}
 
nav.pager ul li a:hover {
 
background: #f79c08;
 
color: #fff;
 
border-color: #f79c08;
 
}
 
@media (max-width: 767px) {
 
nav.pager ul li {
 
margin-right: 1px;
 
}
 
nav.pager ul li a {
 
padding: 2px 5px;
 
}
 
}
 
.footer nav ul {
 
list-style: none;
 
margin-left: 0;
 
}
 
#block-simpleblog-local-tasks ul {
 
display: flex;
 
list-style: none;
 
margin-left: 0;
 
}
 
#block-simpleblog-local-tasks ul li {
 
margin-right: 15px;
 
}
 
@media (max-width: 767px){
 
#block-simpleblog-local-tasks ul {
 
display: block;
 
}
 
}
 
@media (max-width: 767px) {
 
form input[type="submit"],
 
form input[type="reset"],
 
form input[type="button"],
 
form button,
 
form .button {
 
margin: 16px 0;
 
padding: 10px 15px 10px 15px;
 
line-height: 0;
 
}
 
}
 
.search-advanced .form-item {
 
margin-bottom: 10px;
 
}
 
\ No newline at end of file
Loading