Skip to content

Commit

Permalink
Add logos from impurepics (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunk authored and alexarchambault committed Jul 12, 2019
1 parent 3e4c5ea commit 3cebebf
Show file tree
Hide file tree
Showing 15 changed files with 652 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,6 +1,7 @@
target/ target/
.DS_Store .DS_Store
.idea/ .idea/
.bloop


# website stuff # website stuff
processed-pages/ processed-pages/
4 changes: 4 additions & 0 deletions README.md
@@ -1,3 +1,7 @@
<div align="center">
<img src="docs/website/static/logos/impure-logos-almond-1.svg" alt="logo" width="40%">
</div>

# almond # almond


*almond* is a [Scala](https://scala-lang.org) kernel for [Jupyter](https://jupyter.org). *almond* is a [Scala](https://scala-lang.org) kernel for [Jupyter](https://jupyter.org).
Expand Down
3 changes: 2 additions & 1 deletion docs/website/pages/en/index.js
Expand Up @@ -41,7 +41,7 @@ const SplashContainer = props => (


const Logo = props => ( const Logo = props => (
<div className="projectLogo"> <div className="projectLogo">
<img src={props.img_src} /> <img src={props.img_src} alt="Project Logo" />
</div> </div>
); );


Expand All @@ -65,6 +65,7 @@ class HomeSplash extends React.Component {
let language = this.props.language || ''; let language = this.props.language || '';
return ( return (
<SplashContainer> <SplashContainer>
<Logo img_src={`${siteConfig.baseUrl}logos/impure-logos-almond-1.svg`} />
<div className="inner"> <div className="inner">
<ProjectTitle /> <ProjectTitle />
<PromoSection> <PromoSection>
Expand Down
2 changes: 2 additions & 0 deletions docs/website/siteConfig.js
Expand Up @@ -22,6 +22,8 @@ const siteConfig = {


users: [], users: [],


headerIcon: 'logos/impure-logos-almond-1.svg',

colors: { colors: {
primaryColor: '#287cdc', primaryColor: '#287cdc',
secondaryColor: '#3498DB', secondaryColor: '#3498DB',
Expand Down
14 changes: 14 additions & 0 deletions docs/website/static/css/custom.css
Expand Up @@ -9,3 +9,17 @@
.fixedHeaderContainer { .fixedHeaderContainer {
background-color: rgb(0, 0, 0); background-color: rgb(0, 0, 0);
} }

/* override default docusaurus logo placement */
@media all {
.homeContainer .homeWrapper .projectLogo {
display: block;
position: static;
padding: 0;
}
}

.homeContainer .homeWrapper .projectLogo img {
height: 100%;
max-height: 250px;
}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions docs/website/static/logos/impure-logos-almond-0.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions docs/website/static/logos/impure-logos-almond-1.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3cebebf

Please sign in to comment.