This file contains hidden or 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
| /* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */ | |
| .flip-card { | |
| background-color: transparent; | |
| width: 300px; | |
| height: 200px; | |
| border: 1px solid #f1f1f1; | |
| perspective: 1000px; /* Remove this if you don't want the 3D effect */ | |
| } | |
| /* This container is needed to position the front and back side */ |
This file contains hidden or 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
| .container__accordian{ | |
| display: none; | |
| } |
This file contains hidden or 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
| .rotate{ | |
| transform: rotate(90deg); | |
| transition: all .3s ease-in; | |
| } |
This file contains hidden or 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
| { | |
| "html": { | |
| "allowed_file_extensions": ["htm", "html", "xhtml", "shtml", "xml", "svg", "dust"], | |
| "brace_style": "collapse", | |
| "end_with_newline": true, | |
| "indent_char": " ", | |
| "indent_handlebars": true, | |
| "indent_inner_html": false, | |
| "indent_scripts": "keep", | |
| "indent_size": 4, |
This file contains hidden or 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
| function enqueue_adobe_fonts_stylesheet() | |
| { | |
| wp_enqueue_style('adobe_fonts_stylesheet', 'https://use.typekit.net/hny8rtu.css', 'all'); | |
| } | |
| add_action('wp_enqueue_scripts', 'enqueue_adobe_fonts_stylesheet'); |
This file contains hidden or 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
| function understrap_change_logo_class($html) | |
| { | |
| $html = str_replace('class="custom-logo"', 'class="style-svg img-fluid"', $html); | |
| return $html; | |
| } |
This file contains hidden or 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
| const object1 = { | |
| name: 'Flavio' | |
| } | |
| const object2 = { | |
| age: 35 | |
| } | |
| const object3 = {...object1, ...object2 } |
This file contains hidden or 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
| import React from 'react' | |
| import { useStaticQuery, graphql } from 'gatsby' | |
| import Img from 'gatsby-image' | |
| const data = useStaticQuery(graphql` | |
| query { | |
| file(relativePath: { eq: "bookshelf.jpg" }) { | |
| childImageSharp { | |
| fluid { | |
| base64 |
This file contains hidden or 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
| /** @jsx jsx */ | |
| import React from "react" | |
| import { Styled, jsx } from "theme-ui" | |
| import { Link, graphql } from "gatsby" | |
| import Layout from "../components/Organisms/Layout" | |
| import SEO from "./seo" | |
| import Img from "gatsby-image" | |
| export const query = graphql` | |
| query { |
This file contains hidden or 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
| /** @jsx jsx */ | |
| import React from "react" | |
| import { Styled, jsx } from "theme-ui" | |
| import { Link, graphql } from "gatsby" | |
| import Layout from "../components/Organisms/Layout" | |
| import SEO from "./seo" | |
| import Img from "gatsby-image" | |
| export const fluidImage = graphql` | |
| fragment fluidImage on File { |