-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update version to 1.5.0 * style: add breadcrumb theme * feat: export breadcrumb and import on post * style: adjusts margin on title n description post * refactor: add classname and symbols on html * style: all styles of breadcrumb - import themes - add colors and margins - add typography and sizes * refactor: change text and color of home
- Loading branch information
Showing
7 changed files
with
46 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "bruno-dulcetti-site", | ||
"description": "Bruno Dulcetti - web standards, css, xhtml e tecnologia em geral.", | ||
"version": "1.4.0", | ||
"version": "1.5.0", | ||
"author": "Bruno Dulcetti <[email protected]>", | ||
"scripts": { | ||
"build": "yarn clean && gatsby build", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,27 @@ | ||
import styled from 'styled-components'; | ||
import AniLink from 'gatsby-plugin-transition-link/AniLink'; | ||
import { themes } from '../../styles/themes'; | ||
|
||
export const BreadcrumbWrapper = styled.p``; | ||
export const BreadcrumbWrapper = styled.p` | ||
color: ${themes.palette.breadcrumb.color}; | ||
margin-bottom: 10px; | ||
`; | ||
|
||
export const HomeLink = styled(AniLink)``; | ||
export const HomeLink = styled(AniLink)` | ||
color: ${themes.palette.breadcrumb.homeColor}; | ||
font-weight: bold; | ||
text-decoration: underline; | ||
export const CategoryLink = styled.span``; | ||
&:hover { | ||
text-decoration: none; | ||
} | ||
`; | ||
|
||
export const Title = styled.strong``; | ||
export const CategoryLink = styled.span` | ||
text-transform: lowercase; | ||
`; | ||
|
||
export const Title = styled.strong` | ||
font-family: ${themes.fonts.others}; | ||
font-size: 1.1rem; | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters