mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-15 06:09:01 +03:00
21 lines
543 B
Sass
21 lines
543 B
Sass
|
// Footer - Variables
|
||
|
// ============================================================================
|
||
|
|
||
|
$footer-background : color($theme) pattern($theme)
|
||
|
$footer-color : color(white)
|
||
|
$footer-padding : 2.75rem
|
||
|
$footer-text-align : center
|
||
|
|
||
|
|
||
|
// Footer - Style
|
||
|
// ============================================================================
|
||
|
|
||
|
.footer
|
||
|
@extend .link-list
|
||
|
background: $footer-background
|
||
|
color: $footer-color
|
||
|
overflow: auto
|
||
|
padding: $footer-padding
|
||
|
text-align: $footer-text-align
|
||
|
z-index: 100
|