���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/cwd/usr/lib/node_modules/npm/docs/src/components/ |
import {Link} from 'gatsby' import styled, {css} from 'styled-components' const baseLinkStyles = css` font-weight: 500; text-decoration: none; letter-spacing: .3px; font-size: 14px; ` const featureLinkStyles = css` ${baseLinkStyles} color: ${(props) => props.theme.colors.black}; transition: opacity .5s &:hover { opacity: .9; } ` const navLinkStyles = css` ${baseLinkStyles}; color: ${(props) => props.theme.colors.black}; transition: opacity .5s; margin: 0 10px; &:hover { opacity: .5; } ` export const FeatureLink = styled(Link)` ${featureLinkStyles} ` export const NavLink = styled(Link)` ${navLinkStyles}; ` export const BasicNavLink = styled.a` ${navLinkStyles}; ` export const SidebarLink = styled(Link)` ${baseLinkStyles}; color: ${(props) => props.theme.colors.red}; padding: 10px; transition: background-color .3s; &:hover { background-color: ${(props) => props.theme.colors.lightPurple}; } `