mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 09:13:19 +01:00
networks fix, split up logo unit
This commit is contained in:
parent
5e8f815561
commit
efbc1846d2
@ -19,10 +19,11 @@ availability:
|
|||||||
available: "👔 Available for new projects. <a href=\"mailto:m@kretschmann.io\">Let’s talk</a>!"
|
available: "👔 Available for new projects. <a href=\"mailto:m@kretschmann.io\">Let’s talk</a>!"
|
||||||
unavailable: Not available for new projects.
|
unavailable: Not available for new projects.
|
||||||
|
|
||||||
|
# Footer actions
|
||||||
gpg: https://kretschmann.io/pub.gpg
|
gpg: https://kretschmann.io/pub.gpg
|
||||||
addressbook: /matthias-kretschmann.vcf
|
addressbook: /matthias-kretschmann.vcf
|
||||||
|
|
||||||
typekit: dtg3zui
|
# Analytics tools
|
||||||
googleanalytics: UA-1441794-4
|
googleanalytics: UA-1441794-4
|
||||||
matomoUrl: https://analytics.kremalicious.com
|
matomoUrl: https://analytics.kremalicious.com
|
||||||
matomoSite: 2
|
matomoSite: 2
|
||||||
|
@ -49,11 +49,13 @@
|
|||||||
"eslint-plugin-compat": "^2.2.0",
|
"eslint-plugin-compat": "^2.2.0",
|
||||||
"eslint-plugin-graphql": "^2.1.1",
|
"eslint-plugin-graphql": "^2.1.1",
|
||||||
"eslint-plugin-prettier": "^2.6.0",
|
"eslint-plugin-prettier": "^2.6.0",
|
||||||
"eslint-plugin-react": "^7.8.1",
|
"eslint-plugin-react": "^7.8.2",
|
||||||
"prettier": "^1.12.1",
|
"prettier": "^1.12.1",
|
||||||
"prettier-stylelint": "^0.4.2",
|
"prettier-stylelint": "^0.4.2",
|
||||||
"stylelint": "^9.2.0",
|
"stylelint": "^9.2.0",
|
||||||
"stylelint-config-standard": "^18.2.0"
|
"stylelint-config-standard": "^18.2.0"
|
||||||
},
|
},
|
||||||
"browserslist": ["defaults"]
|
"browserslist": [
|
||||||
|
"defaults"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
25
src/components/atoms/LogoUnit.jsx
Normal file
25
src/components/atoms/LogoUnit.jsx
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import React from 'react'
|
||||||
|
import PropTypes from 'prop-types'
|
||||||
|
import { ReactComponent as Logo } from '../../images/logo.svg'
|
||||||
|
import './LogoUnit.scss'
|
||||||
|
|
||||||
|
const LogoUnit = ({ meta, minimal }) => {
|
||||||
|
const classes = minimal ? 'logounit logounit--minimal' : 'logounit'
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={classes}>
|
||||||
|
<Logo className="logounit__logo" />
|
||||||
|
<h1 className="logounit__title">{meta.title.toLowerCase()}</h1>
|
||||||
|
<p className="logounit__description">
|
||||||
|
<span>{'{ '}</span> {meta.tagline.toLowerCase()} <span>{' }'}</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
LogoUnit.propTypes = {
|
||||||
|
meta: PropTypes.object.isRequired,
|
||||||
|
minimal: PropTypes.bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
export default LogoUnit
|
57
src/components/atoms/LogoUnit.scss
Normal file
57
src/components/atoms/LogoUnit.scss
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
@import 'variables';
|
||||||
|
|
||||||
|
.logounit__logo {
|
||||||
|
display: block;
|
||||||
|
width: 1.5rem;
|
||||||
|
height: 1.5rem;
|
||||||
|
fill: $brand-grey-light;
|
||||||
|
margin-bottom: $spacer / 2;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logounit__title,
|
||||||
|
.logounit__description {
|
||||||
|
display: inline-block;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logounit__title {
|
||||||
|
font-size: $font-size-h3;
|
||||||
|
margin-right: $spacer / 4;
|
||||||
|
color: $brand-main;
|
||||||
|
line-height: $line-height;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logounit__description {
|
||||||
|
font-size: $font-size-h4;
|
||||||
|
color: $brand-grey;
|
||||||
|
|
||||||
|
.dark & {
|
||||||
|
color: $brand-grey-light;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
opacity: .4;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.logounit--minimal {
|
||||||
|
transform: scale(.7);
|
||||||
|
transform-origin: top center;
|
||||||
|
transform-box: border-box;
|
||||||
|
|
||||||
|
.logounit__title,
|
||||||
|
.logounit__description {
|
||||||
|
color: $brand-grey-light;
|
||||||
|
|
||||||
|
.dark & {
|
||||||
|
color: $brand-grey;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.logounit__logo {
|
||||||
|
margin-bottom: $spacer / 3;
|
||||||
|
opacity: .5;
|
||||||
|
}
|
||||||
|
}
|
@ -33,7 +33,9 @@ class Network extends PureComponent {
|
|||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props)
|
super(props)
|
||||||
|
|
||||||
this.state = { classes: 'networks' }
|
this.state = {
|
||||||
|
classes: 'networks',
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
@ -46,23 +48,21 @@ class Network extends PureComponent {
|
|||||||
|
|
||||||
toggleClasses = () => {
|
toggleClasses = () => {
|
||||||
if (this.props.minimal) {
|
if (this.props.minimal) {
|
||||||
this.setState({ classes: 'networks' })
|
|
||||||
} else {
|
|
||||||
this.setState({ classes: 'networks networks--minimal' })
|
this.setState({ classes: 'networks networks--minimal' })
|
||||||
|
} else {
|
||||||
|
this.setState({ classes: 'networks' })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { social } = this.props.meta
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
!this.props.hide && (
|
!this.props.hide && (
|
||||||
<FadeIn timeout={{ enter: 200, exit: 0, appear: 200 }}>
|
<FadeIn>
|
||||||
<aside className={this.state.classes}>
|
<aside className={this.state.classes}>
|
||||||
{Object.keys(social).map((key, i) => (
|
{Object.keys(this.props.meta.social).map((key, i) => (
|
||||||
<OutboundLink
|
<OutboundLink
|
||||||
className="networks__link"
|
className="networks__link"
|
||||||
href={social[key]}
|
href={this.props.meta.social[key]}
|
||||||
key={i}
|
key={i}
|
||||||
>
|
>
|
||||||
<NetworkIcon title={key} className="icon" />
|
<NetworkIcon title={key} className="icon" />
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
color: $brand-grey-light;
|
color: $brand-grey-light;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: translate3d(0, .5rem, 0);
|
transform: translate3d(0, .5rem, 0);
|
||||||
transition: .2s ease-out;
|
transition: .2s $easing;
|
||||||
}
|
}
|
||||||
|
|
||||||
.networks__link {
|
.networks__link {
|
||||||
@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
&,
|
&,
|
||||||
.icon {
|
.icon {
|
||||||
transition: .2s ease-out;
|
transition: .2s $easing;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
@ -55,6 +55,7 @@
|
|||||||
.icon {
|
.icon {
|
||||||
width: .85rem;
|
width: .85rem;
|
||||||
height: .85rem;
|
height: .85rem;
|
||||||
|
opacity: .8;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import React, { PureComponent } from 'react'
|
import React, { PureComponent } from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import Vcard from '../atoms/Vcard'
|
import Vcard from '../atoms/Vcard'
|
||||||
|
import LogoUnit from '../atoms/LogoUnit'
|
||||||
import Networks from '../molecules/Networks'
|
import Networks from '../molecules/Networks'
|
||||||
import './Footer.scss'
|
import './Footer.scss'
|
||||||
|
|
||||||
@ -16,12 +17,14 @@ class Footer extends PureComponent {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<footer className="footer">
|
<footer className="footer">
|
||||||
|
<LogoUnit meta={meta} minimal />
|
||||||
<Networks meta={meta} minimal />
|
<Networks meta={meta} minimal />
|
||||||
|
|
||||||
<p className="footer__actions">
|
<p className="footer__actions">
|
||||||
<Vcard meta={meta} />
|
<Vcard meta={meta} />
|
||||||
<a href={meta.gpg}>PGP/GPG key</a>
|
<a href={meta.gpg}>PGP/GPG key</a>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p className="footer__copyright">
|
||||||
<small>
|
<small>
|
||||||
© {this.state.year} {meta.title} — All Rights Reserved
|
© {this.state.year} {meta.title} — All Rights Reserved
|
||||||
</small>
|
</small>
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
@import 'variables';
|
@import 'variables';
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
padding: $spacer * 2;
|
padding: $spacer;
|
||||||
|
padding-top: $spacer * 4;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: $text-color-light;
|
color: $text-color-light;
|
||||||
|
|
||||||
@ -12,7 +13,7 @@
|
|||||||
|
|
||||||
.networks {
|
.networks {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: $spacer;
|
margin-bottom: $spacer * 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark & {
|
.dark & {
|
||||||
@ -21,9 +22,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.footer__actions {
|
.footer__actions {
|
||||||
width: 100%;
|
|
||||||
margin-bottom: $spacer;
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 0 $spacer / 4;
|
padding: 0 $spacer / 4;
|
||||||
|
@ -5,7 +5,7 @@ import { FadeIn } from '../atoms/Animations'
|
|||||||
import Networks from '../molecules/Networks'
|
import Networks from '../molecules/Networks'
|
||||||
import Availability from '../molecules/Availability'
|
import Availability from '../molecules/Availability'
|
||||||
import ThemeSwitch from '../molecules/ThemeSwitch'
|
import ThemeSwitch from '../molecules/ThemeSwitch'
|
||||||
import { ReactComponent as Logo } from '../../images/logo.svg'
|
import LogoUnit from '../atoms/LogoUnit'
|
||||||
import './Header.scss'
|
import './Header.scss'
|
||||||
|
|
||||||
class Header extends PureComponent {
|
class Header extends PureComponent {
|
||||||
@ -39,13 +39,8 @@ class Header extends PureComponent {
|
|||||||
<header className={this.state.classes}>
|
<header className={this.state.classes}>
|
||||||
<ThemeSwitch />
|
<ThemeSwitch />
|
||||||
<FadeIn>
|
<FadeIn>
|
||||||
<Link className="header__name" to={'/'}>
|
<Link className="header__logounit-link" to={'/'}>
|
||||||
<Logo className="header__logo" />
|
<LogoUnit meta={meta} minimal={!isHomepage} />
|
||||||
<h1 className="header__title">{meta.title.toLowerCase()}</h1>
|
|
||||||
<p className="header__description">
|
|
||||||
<span>{'{ '}</span> {meta.tagline.toLowerCase()}{' '}
|
|
||||||
<span>{' }'}</span>
|
|
||||||
</p>
|
|
||||||
</Link>
|
</Link>
|
||||||
</FadeIn>
|
</FadeIn>
|
||||||
|
|
||||||
|
@ -12,43 +12,7 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header__logo {
|
.header__logounit-link {
|
||||||
display: block;
|
|
||||||
width: 1.5rem;
|
|
||||||
height: 1.5rem;
|
|
||||||
fill: $brand-grey-light;
|
|
||||||
margin-bottom: $spacer / 2;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header__title,
|
|
||||||
.header__description {
|
|
||||||
display: inline-block;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header__title {
|
|
||||||
font-size: $font-size-h3;
|
|
||||||
margin-right: $spacer / 4;
|
|
||||||
color: $brand-main;
|
|
||||||
line-height: $line-height;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header__description {
|
|
||||||
font-size: $font-size-large;
|
|
||||||
color: $brand-grey;
|
|
||||||
|
|
||||||
.dark & {
|
|
||||||
color: $brand-grey-light;
|
|
||||||
}
|
|
||||||
|
|
||||||
span {
|
|
||||||
opacity: .4;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.header__name {
|
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -61,57 +25,8 @@
|
|||||||
padding-top: $spacer * 2;
|
padding-top: $spacer * 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header__title {
|
.header__logounit-link {
|
||||||
font-size: $font-size-h4;
|
|
||||||
line-height: $line-height-headings;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header__description {
|
|
||||||
font-size: $font-size-base;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header__title,
|
|
||||||
.header__description {
|
|
||||||
color: $brand-grey-light;
|
|
||||||
|
|
||||||
.dark & {
|
|
||||||
color: $brand-grey;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.header__logo {
|
|
||||||
width: 1rem;
|
|
||||||
height: 1rem;
|
|
||||||
margin-bottom: $spacer / 3;
|
|
||||||
opacity: .5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header__name {
|
|
||||||
pointer-events: all;
|
pointer-events: all;
|
||||||
display: inline-block;
|
|
||||||
width: auto;
|
width: auto;
|
||||||
|
|
||||||
&:hover,
|
|
||||||
&:focus {
|
|
||||||
.header__logo {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header__title {
|
|
||||||
color: $color-headings;
|
|
||||||
|
|
||||||
.dark & {
|
|
||||||
color: $color-headings--dark;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.header__description {
|
|
||||||
color: $text-color;
|
|
||||||
|
|
||||||
.dark & {
|
|
||||||
color: $text-color--dark;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -102,8 +102,6 @@ export const query = graphql`
|
|||||||
}
|
}
|
||||||
gpg
|
gpg
|
||||||
addressbook
|
addressbook
|
||||||
typekit
|
|
||||||
googleanalytics
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
@ -8,6 +8,10 @@
|
|||||||
margin-bottom: $spacer * 8;
|
margin-bottom: $spacer * 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
display: block;
|
display: block;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -109,8 +109,6 @@ export const projectQuery = graphql`
|
|||||||
available
|
available
|
||||||
unavailable
|
unavailable
|
||||||
}
|
}
|
||||||
typekit
|
|
||||||
googleanalytics
|
|
||||||
img {
|
img {
|
||||||
childImageSharp {
|
childImageSharp {
|
||||||
resize(width: 980) {
|
resize(width: 980) {
|
||||||
|
Loading…
Reference in New Issue
Block a user