mirror of
https://github.com/inspec/inspec
synced 2024-12-26 21:13:25 +00:00
4641978716
* New styles * Fundamental styles for home page * Legal pages * Community page, downloads page, tutorials page * Docs page * Content toggle and github badge * Add code - highlighter * Copy button * Sliding content animation * fix particle animatino on downloads page * Scroll-to-top button * docs sidebar links * innocent comments on resources * Fancy code animation * Small update to diamond * whatever slider * Slider styles * initial selection if no sliders are there * add netifly config Signed-off-by: Christoph Hartmann <chris@lollyrock.com> * inspec for provisioners * fix incorrect text on aws ssm * fix layout javascript post-rebase * resource grouping in docs * introduce groups in docs/resources * fix minor spelling issues and move download button in new features section Signed-off-by: Christoph Hartmann <chris@lollyrock.com> * pass linting Signed-off-by: Christoph Hartmann <chris@lollyrock.com>
100 lines
1.6 KiB
SCSS
100 lines
1.6 KiB
SCSS
|
|
#main-footer {
|
|
padding-right: 45px; // Same margins as nav
|
|
padding-left: 45px;
|
|
background: $color_dark;
|
|
}
|
|
|
|
footer > #dlmsg { // Download Message
|
|
padding-top: $percent_md;
|
|
padding-bottom: $percent_md;
|
|
}
|
|
|
|
footer a.btn:first-child {
|
|
margin-right: 1.6em;
|
|
}
|
|
|
|
footer span {
|
|
margin-left: 6px;// Icon
|
|
}
|
|
|
|
.columns.large-8.medium-8 {
|
|
@include nav-small {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
ul.footer--logos {
|
|
margin-left: 0!important;
|
|
|
|
@include nav-small {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
ul.footer--logos li {
|
|
display: inline-block;
|
|
margin-left: 0!important;
|
|
}
|
|
|
|
.footer--logo {
|
|
display: inline-block;
|
|
-webkit-filter: brightness(0) invert(1);
|
|
filter: brightness(0) invert(1);
|
|
vertical-align: middle;
|
|
|
|
&.chef {
|
|
width: 80px;
|
|
padding-left: 1.6em; //same as default li margin
|
|
border-left: 1px solid $color_white;
|
|
|
|
@include nav-small { //mobile
|
|
border-left: initial;
|
|
}
|
|
}
|
|
|
|
&.inspec {
|
|
width: 130px;
|
|
padding-right: 1.6em; //same as default li margin
|
|
}
|
|
}
|
|
|
|
ul.footer--links {
|
|
@extend .no-bullet;
|
|
display: inline-flex;
|
|
margin-left: auto;
|
|
|
|
@include nav-small { //mobile
|
|
display: block;
|
|
text-align: center;
|
|
float: none;
|
|
}
|
|
|
|
li {
|
|
margin-left: 28px;
|
|
|
|
@include nav-small { //mobile
|
|
margin-left: initial;
|
|
margin-bottom: $percent_sm/2;
|
|
}
|
|
}
|
|
}
|
|
|
|
li a.footer--link {
|
|
color: $color_white;
|
|
text-decoration: none;
|
|
&:active,
|
|
&:focus,
|
|
&:hover {
|
|
color: $color_purple;
|
|
}
|
|
}
|
|
|
|
// Hex Animation
|
|
|
|
img#hex {
|
|
width: 45px;
|
|
-moz-animation: spin 2s linear infinite both;
|
|
-webkit-animation: spin 2s linear infinite both;
|
|
animation: spin 2s linear infinite both;
|
|
}
|