mirror of
https://github.com/Spythere/spythere-portfolio.git
synced 2026-05-03 05:28:16 +00:00
48 lines
974 B
TypeScript
48 lines
974 B
TypeScript
import { styled } from 'styled-components';
|
|
|
|
export const StyledNavbar = styled.nav`
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1000;
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 3.5em;
|
|
|
|
color: white;
|
|
background-color: ${({ theme }) => theme.colors.nav};
|
|
padding: 0.75em 2em;
|
|
`;
|
|
|
|
export const StyledNavlinkBrand = styled.a`
|
|
opacity: 0.85;
|
|
font-weight: 700;
|
|
color: ${({ theme }) => theme.colors.primary};
|
|
font-size: 1.3em;
|
|
`;
|
|
|
|
export const StyledNavlinkList = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1em;
|
|
font-size: 1.1em;
|
|
`;
|
|
|
|
export const StyledNavlink = styled.a`
|
|
/* color: black; */
|
|
font-weight: bold;
|
|
`;
|
|
|
|
export const StyledLangButton = styled.button`
|
|
font-size: 1em;
|
|
font-weight: bold;
|
|
|
|
padding: 0.25em 1em;
|
|
text-transform: uppercase;
|
|
cursor: pointer;
|
|
|
|
border: 1px solid ${({ theme }) => theme.colors.primary};
|
|
background: none;
|
|
`;
|