ea9e0757ff
This is the initial commit with the templates necessary to have our RocksDB user documentation hosted on GitHub pages. Ensure you meet requirements here: https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/#requirements Then you can run this right now by doing the following: ``` % bundle install % bundle exec jekyll serve --config=_config.yml,_config_local_dev.yml ``` Then go to: http://127.0.0.1:4000/ Obviously, this is just the skeleton. Moving forward we will do these things in separate pull requests: - Replace logos with RocksDB logos - Update the color schemes - Add current information on rocksdb.org to markdown in this infra - Migrate current Wodpress blog to Jekyll and Disqus comments - Etc.
82 lines
1.4 KiB
SCSS
82 lines
1.4 KiB
SCSS
.footerContainer {
|
|
background: $secondary-bg;
|
|
color: $primary-bg;
|
|
overflow: hidden;
|
|
padding: 0 10px;
|
|
text-align: left;
|
|
|
|
.footerWrapper {
|
|
border-top: 1px solid $primary-bg;
|
|
padding: 0;
|
|
|
|
.footerBlocks {
|
|
align-items: center;
|
|
align-content: center;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
margin: 0 -20px;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.footerSection {
|
|
box-sizing: border-box;
|
|
flex: 1 1 25%;
|
|
font-size: 14px;
|
|
min-width: 275px;
|
|
padding: 0px 20px;
|
|
|
|
a {
|
|
border: 0;
|
|
color: inherit;
|
|
display: inline-block;
|
|
line-height: 1.2em;
|
|
}
|
|
|
|
.footerLink {
|
|
padding-right: 20px;
|
|
}
|
|
}
|
|
|
|
.fbOpenSourceFooter {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
max-width: 25%;
|
|
|
|
.facebookOSSLogoSvg {
|
|
flex: 0 0 31px;
|
|
height: 30px;
|
|
margin-right: 10px;
|
|
width: 31px;
|
|
|
|
path {
|
|
fill: $primary-bg;
|
|
}
|
|
|
|
.middleRing {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.innerRing {
|
|
opacity: 0.45;
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
display: block;
|
|
font-weight: 900;
|
|
line-height: 1em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 900px) {
|
|
.footerSection {
|
|
&.rightAlign {
|
|
margin-left: auto;
|
|
max-width: 25%;
|
|
text-align: right;
|
|
}
|
|
}
|
|
} |