Responsive style improvements
This commit is contained in:
parent
52992bd678
commit
1d4860cd87
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -338,6 +338,7 @@ button.gh-form-input {
|
|||||||
height: 100px;
|
height: 100px;
|
||||||
font-size: 1.6rem;
|
font-size: 1.6rem;
|
||||||
font-weight: 550;
|
font-weight: 550;
|
||||||
|
background-color: var(--background-color);
|
||||||
color: var(--color-darker-gray);
|
color: var(--color-darker-gray);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -471,6 +472,10 @@ LOGO Home About Collection Author Portal Login Subscribe
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 992px) {
|
@media (min-width: 992px) {
|
||||||
|
.gh-navigation.is-left-logo .gh-navigation-logo:not(:has(img)) {
|
||||||
|
top: -2px;
|
||||||
|
}
|
||||||
|
|
||||||
.gh-navigation.is-left-logo .gh-navigation-menu {
|
.gh-navigation.is-left-logo .gh-navigation-menu {
|
||||||
margin-right: 100px;
|
margin-right: 100px;
|
||||||
margin-left: 16px;
|
margin-left: 16px;
|
||||||
@ -771,7 +776,6 @@ Search LOGO Login Subscribe
|
|||||||
gap: 12px;
|
gap: 12px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: var(--container-gap) 0 calc(var(--container-gap) + 8px);
|
padding: var(--container-gap) 0 calc(var(--container-gap) + 8px);
|
||||||
background-color: var(--color-white);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.is-open#gh-navigation :is(.gh-button, a[data-portal="signin"]) {
|
.is-open#gh-navigation :is(.gh-button, a[data-portal="signin"]) {
|
||||||
@ -1131,7 +1135,7 @@ Search LOGO Login Subscribe
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
@media (max-width: 1199px) {
|
||||||
.gh-header.is-highlight .gh-header-inner {
|
.gh-header.is-highlight .gh-header-inner {
|
||||||
grid-template-columns: repeat(9, 1fr);
|
grid-template-columns: repeat(9, 1fr);
|
||||||
}
|
}
|
||||||
@ -1168,34 +1172,25 @@ Search LOGO Login Subscribe
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 991px) {
|
||||||
.gh-header.is-highlight .gh-featured-feed {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
}
|
|
||||||
|
|
||||||
.gh-header.is-highlight .gh-header-middle .gh-card:nth-child(2) .gh-card-image {
|
.gh-header.is-highlight .gh-header-middle .gh-card:nth-child(2) .gh-card-image {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 640px) {
|
@media (max-width: 767px) {
|
||||||
.gh-header.is-highlight .gh-header-inner {
|
.gh-header.is-highlight .gh-header-inner {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-header.is-highlight .gh-header-middle .gh-card .gh-card-image {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gh-header.is-highlight .gh-featured-feed {
|
.gh-header.is-highlight .gh-featured-feed {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: calc(var(--grid-gap) / 2);
|
/* gap: var(--grid-gap); */
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-header.is-highlight .gh-featured-feed .gh-card::before {
|
.gh-header.is-highlight .gh-card-image {
|
||||||
display: none;
|
display: block !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1401,6 +1396,23 @@ Search LOGO Login Subscribe
|
|||||||
background-color: var(--color-border);
|
background-color: var(--color-border);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1199px) {
|
||||||
|
.gh-viewport > .gh-featured .gh-featured-feed {
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
}
|
||||||
|
|
||||||
|
.gh-viewport > .gh-featured .gh-featured-feed .gh-card:nth-child(4) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.gh-viewport > .gh-featured .gh-featured-feed {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* 11. Container
|
/* 11. Container
|
||||||
/* ---------------------------------------------------------- */
|
/* ---------------------------------------------------------- */
|
||||||
|
|
||||||
@ -1486,6 +1498,12 @@ Search LOGO Login Subscribe
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.gh-container-inner {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* 12. Post list
|
/* 12. Post list
|
||||||
/* ---------------------------------------------------------- */
|
/* ---------------------------------------------------------- */
|
||||||
|
|
||||||
@ -1602,6 +1620,19 @@ Search LOGO Login Subscribe
|
|||||||
background-color: var(--color-border);
|
background-color: var(--color-border);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.gh-container.is-grid .gh-feed {
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 576px) {
|
||||||
|
.gh-container.is-grid .gh-feed {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* 12.3. No image list */
|
/* 12.3. No image list */
|
||||||
|
|
||||||
.gh-container.is-list.no-image .gh-card-image {
|
.gh-container.is-list.no-image .gh-card-image {
|
||||||
@ -2136,6 +2167,10 @@ figcaption a {
|
|||||||
grid-template-columns: repeat(4, 1fr);
|
grid-template-columns: repeat(4, 1fr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post-template .gh-container .gh-container-title {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
/* 19. Archive
|
/* 19. Archive
|
||||||
/* ---------------------------------------------------------- */
|
/* ---------------------------------------------------------- */
|
||||||
|
|
||||||
@ -2213,6 +2248,18 @@ figcaption a {
|
|||||||
height: 20px;
|
height: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.gh-archive {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.author-template .gh-archive {
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* 20. Design settings
|
/* 20. Design settings
|
||||||
/* ---------------------------------------------------------- */
|
/* ---------------------------------------------------------- */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user