mirror of
https://github.com/Spythere/spythere-portfolio.git
synced 2026-05-03 21:48:18 +00:00
navbar; logo & landing animation
This commit is contained in:
@@ -3,24 +3,27 @@ import { styled } from 'styled-components';
|
||||
export const StyledNavbar = styled.nav`
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 3.5em;
|
||||
|
||||
color: black;
|
||||
font-size: 1.2em;
|
||||
background-color: ${({ theme }) => theme.colors.primary};
|
||||
padding: 0.5em;
|
||||
color: white;
|
||||
padding: 0.75em 2em;
|
||||
`;
|
||||
|
||||
export const StyledNavlinkBrand = styled.div`
|
||||
color: black;
|
||||
opacity: 0.85;
|
||||
font-weight: 700;
|
||||
color: ${({ theme }) => theme.colors.primary};
|
||||
font-size: 1.3em;
|
||||
`;
|
||||
|
||||
export const StyledNavlinkList = styled.div`
|
||||
display: flex;
|
||||
gap: 0.5em;
|
||||
gap: 1em;
|
||||
font-size: 1.1em;
|
||||
`;
|
||||
|
||||
export const StyledNavlink = styled.a`
|
||||
color: black;
|
||||
/* color: black; */
|
||||
font-weight: bold;
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user