Homepage style improvements
This commit is contained in:
parent
73e2649530
commit
55c958c7ad
7 changed files with 22 additions and 19 deletions
Binary file not shown.
Binary file not shown.
|
@ -729,6 +729,13 @@ $small-breakpoint: 960px;
|
||||||
&--right {
|
&--right {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
width: 395px;
|
width: 395px;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 6px;
|
||||||
|
|
||||||
|
.simple_form {
|
||||||
|
padding: 20px;
|
||||||
|
background-color: var(--brand-color-faint);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 767px) and (max-width: 1024px) {
|
@media (min-width: 767px) and (max-width: 1024px) {
|
||||||
|
@ -1005,3 +1012,7 @@ $small-breakpoint: 960px;
|
||||||
.public-layout pre.canary {
|
.public-layout pre.canary {
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.about-page {
|
||||||
|
background: var(--brand-color-faint);
|
||||||
|
}
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
|
|
||||||
&:disabled,
|
&:disabled,
|
||||||
&.disabled {
|
&.disabled {
|
||||||
background-color: $ui-primary-color;
|
background-color: var(--brand-color-med);
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -203,6 +203,8 @@
|
||||||
.content {
|
.content {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 40px 0;
|
margin: 40px 0;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 6px;
|
||||||
|
|
||||||
@media screen and (max-width: 767px) {
|
@media screen and (max-width: 767px) {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
@ -270,10 +272,12 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 30px;
|
top: 30px;
|
||||||
left: 160px;
|
left: 160px;
|
||||||
|
border-radius: 4px;
|
||||||
|
background: #fff;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
border-radius: 4px;
|
|
||||||
background-color: var(--brand-color-med);
|
background-color: var(--brand-color-med);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,8 +6,8 @@
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
background-color: lighten($ui-base-color, 5%);
|
color: #fff;
|
||||||
border-top: darken($ui-base-color, 10%);
|
background-color: rgba(0, 0, 0, 0.15);
|
||||||
|
|
||||||
@media screen and (max-width: 1024px) {
|
@media screen and (max-width: 1024px) {
|
||||||
padding: 40px 20px;
|
padding: 40px 20px;
|
||||||
|
@ -48,14 +48,9 @@
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
color: var(--primary-text-color);
|
|
||||||
font-size: 1.3rem;
|
font-size: 1.3rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
|
||||||
&:last-of-type {
|
|
||||||
color: var(--primary-text-color-faint);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -67,7 +62,7 @@
|
||||||
li {
|
li {
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: lighten($ui-base-color, 34%);
|
color: #fff;
|
||||||
font-size: 1.3rem;
|
font-size: 1.3rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
|
|
@ -409,17 +409,10 @@ code {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover,
|
||||||
background-color: lighten($ui-highlight-color, 5%);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:active,
|
&:active,
|
||||||
&:focus {
|
&:focus {
|
||||||
background-color: darken($ui-highlight-color, 5%);
|
background-color: var(--brand-color-hicontrast);
|
||||||
}
|
|
||||||
|
|
||||||
&:disabled:hover {
|
|
||||||
background-color: $ui-primary-color;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&.negative {
|
&.negative {
|
||||||
|
|
Loading…
Reference in a new issue