mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
It looks ike these CSS rules are actually being re-imported multiple times, which is bloating the output.
138 lines
2.3 KiB
SCSS
138 lines
2.3 KiB
SCSS
footer {
|
|
.row {
|
|
p {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
a, a * {
|
|
@include csstrans;
|
|
|
|
color: white;
|
|
|
|
&:hover, &:active, &:focus {
|
|
color: rgba(white, 1);
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer-global {
|
|
background-color: $ofn-grey;
|
|
padding-top: 60px;
|
|
padding-bottom: 40px;
|
|
|
|
.logo {
|
|
width: 200px;
|
|
height: 200px;
|
|
background: $ofn-grey;
|
|
|
|
@include border-radius(120px);
|
|
|
|
margin: (-140px) auto 0 auto;
|
|
|
|
img {
|
|
margin-top: 36px;
|
|
width: 120px;
|
|
}
|
|
}
|
|
|
|
.alert-box {
|
|
background-color: transparent;
|
|
border: none;
|
|
padding: 0;
|
|
|
|
.alert-cta {
|
|
@include csstrans;
|
|
|
|
width: 100%;
|
|
border: 1px solid rgba($dark-grey, 0.35);
|
|
background-image: url("../images/tile-wide.png");
|
|
background-position: center center;
|
|
background-color: #bbb;
|
|
padding: 12px 0 8px 0;
|
|
display: block;
|
|
|
|
&, & * {
|
|
@include csstrans;
|
|
|
|
color: #333;
|
|
}
|
|
|
|
strong {
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
a:hover, a:active, a:focus {
|
|
text-decoration: none;
|
|
border-color: white;
|
|
|
|
&, & * {
|
|
color: rgba(white, 1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.row {
|
|
&, p, h1, h2, h3, h4, h5, h6 {
|
|
color: $disabled-bright;
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer-local {
|
|
background: lighten($dark-grey, 3%);
|
|
|
|
@include panepadding;
|
|
|
|
div.row a img {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.row {
|
|
&, p, h1, h2, h3, h4, h5, h6 {
|
|
color: $disabled-med;
|
|
}
|
|
|
|
p.secure-icon i {
|
|
font-size: 10rem;
|
|
color: rgba(white, 0.1);
|
|
}
|
|
|
|
p.secure-text {
|
|
color: rgba($disabled-med, 0.35);
|
|
}
|
|
|
|
p.text-big {
|
|
font-size: 1.5rem;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.social-icons {
|
|
margin-bottom: 0.9rem;
|
|
padding-top: 0.1rem;
|
|
|
|
a {
|
|
i {
|
|
font-size: 1.5rem;
|
|
color: white;
|
|
}
|
|
|
|
&:hover, &:active, &:focus {
|
|
text-decoration: none;
|
|
|
|
i {
|
|
color: lighten($dark-grey, 60%);
|
|
text-shadow: 2px 2px 0 black;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.legal p {
|
|
font-size: 0.875rem;
|
|
}
|
|
}
|
|
}
|