Footer styles.

This commit is contained in:
mDuo13
2019-05-02 17:10:55 -07:00
parent cfe30cfbf9
commit 0f5512c122
4 changed files with 81 additions and 88 deletions

View File

@@ -208,61 +208,22 @@ th {
/* Footer ------------------------------------------------------------------- */
.build-disclaimer {
font-size: 10pt;
font-size: 10px;
}
.ripple-footer {
.xrpl-footer h5 {
font-size: 14px;
background-position-y: -60px;
}
.xrpl-footer li {
font-size: 12px;
}
.xrpl-footer .card li a {
font-weight: 400;
font-family: 'Space Mono', monospace;
}
.ripple-footer a {
color: #999999;
-o-transition: .5s;
-ms-transition: .5s;
-moz-transition: .5s;
-webkit-transition: .5s;
transition: .5s;
font-weight: 500;
}
.ripple-footer a:hover {
text-decoration: underline;
color: white;
}
.ripple-footer hr {
border-top: 1px solid #999999;
}
.ripple-footer h5 a {
color: #ffffff;
letter-spacing: .04em;
text-decoration: none;
padding-bottom: 0.5rem;
}
.ripple-footer h5 a:hover {
text-decoration: underline;
}
.absolute_bottom_footer span {
margin-right: 25px;
}
.foot-nav-col .children-display li {
list-style-type: none;
margin-left: 0;
font-size: 14px;
}
.foot-nav-col {
border-left: 1px solid #eae7e6;
border-right: 1px solid #eae7e6;
}
.foot-nav-col:first-of-type {
border-left: 0;
}
.foot-nav-col:last-of-type {
border-right: 0;
font-size: 10px;
}
/* Callouts ----------------------------------------------------------------- */
@@ -836,7 +797,8 @@ a.current {
overflow-x: auto;
}
.landing .card li {
.landing .card li,
.xrpl-footer .card li {
list-style-type: none;
margin-left: 0;
}
@@ -851,13 +813,15 @@ a.current {
}
.landing .card-header,
.landing .card-footer {
.landing .card-footer,
.xrpl-footer .card-header {
background: none;
border-bottom: none;
border-top: none;
}
.landing .card-header {
.landing .card-header,
.xrpl-footer .card-header {
padding: 8px;
}
@@ -865,14 +829,6 @@ a.current {
padding: 8px;
}
.landing .card-header a {
display: block;
margin: -12px;
padding: 12px;
border-radius: inherit;
transition: 0.5s;
}
.landing .card-body > p {
padding: 0;
font-size: 18px;

View File

@@ -7161,7 +7161,9 @@ h1, h2, h3, h4, h5 {
font-family: 'Space Mono', monospace;
font-weight: 700; }
.landing section {
.landing section,
.xrpl-footer .card-grid,
#main_content_wrapper {
border-bottom: 1px solid #1B1818; }
.card-grid {
@@ -7222,6 +7224,17 @@ h1, h2, h3, h4, h5 {
.card-grid.card-grid-3xN {
/* Switch to 1-column layout on smaller widths */
grid-template-columns: 1fr; } }
.card-grid.card-grid-Nx1 {
/* 1 row of equal sized columns */
grid-auto-flow: column;
grid-auto-columns: 1fr;
grid-template-rows: auto;
/* No "hero" blocks expected here. */ }
@media (max-width: 991.98px) {
.card-grid.card-grid-Nx1 {
/* Switch to 1-column layout on smaller widths */
grid-auto-flow: row;
grid-template-columns: 1fr; } }
.card-grid .card {
padding: 40px;
border: 0; }