12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // Footer styles
- footer {
- margin: 4rem 0 0;
- padding: 2rem 0;
- width: 100%;
- }
- footer p {
- font-size: 0.75rem;
- text-align: center;
- }
- footer .powered-by {
- font-size: 0.67rem;
- }
- .site-footer,
- footer a.back-to-top i {
- color: rgba(0,0,0,0.54);
- }
- // Dark footer theme
- .dark .site-footer,
- .dark footer a.back-to-top i,
- .dark .docs .body-footer {
- color: rgba(255,255,255,0.54);
- }
- // Footer copyright license
- .footer-license-icons {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: center;
- list-style: none;
- height: auto;
- width: auto;
- font-size: 0; // Hack to remove space characters between icons without using UL.
- text-decoration: none;
- }
- .footer-license-icons img {
- display: inline-flex;
- margin-right: 8px;
- height: 22px;
- vertical-align: text-bottom;
- }
|