mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-06 14:54:57 +00:00
add sass/scratch.scss and associated sass files
This commit is contained in:
65
Resources/public/sass/modules/_footer.scss
Normal file
65
Resources/public/sass/modules/_footer.scss
Normal file
@@ -0,0 +1,65 @@
|
||||
.footer {
|
||||
background: $footer-background;
|
||||
padding-top: $footer-vertical-padding;
|
||||
padding-bottom: $footer-vertical-padding;
|
||||
width: 100%;
|
||||
|
||||
.footer-logo {
|
||||
text-align: center;
|
||||
margin-bottom: 2em;
|
||||
|
||||
img {
|
||||
height: 3em;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
@include gridle_clear(both);
|
||||
|
||||
margin-bottom: $base-spacing;
|
||||
@include gridle(8);
|
||||
@include gridle_centered();
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-bottom: $base-spacing*2;
|
||||
@include gridle (4);
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
li {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
li a {
|
||||
color: $footer-link-color;
|
||||
|
||||
&:hover {
|
||||
color: transparentize($footer-color, 0);
|
||||
}
|
||||
}
|
||||
|
||||
li h3 {
|
||||
color: $footer-color;
|
||||
font-size: 1em;
|
||||
font-weight: 800;
|
||||
margin-bottom: .4em;
|
||||
}
|
||||
|
||||
hr {
|
||||
@include gridle_clear(both);
|
||||
border: 1px solid transparentize($footer-disclaimer-color, .3);
|
||||
margin: 0 auto $base-spacing;
|
||||
width: 12em;
|
||||
}
|
||||
|
||||
p {
|
||||
@include gridle_clear(both);
|
||||
color: $footer-disclaimer-color;
|
||||
font-size: .9em;
|
||||
line-height: 1.5em;
|
||||
margin: auto;
|
||||
max-width: 35em;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user