polsevev.dev/polsevev.dev.frontend/src/styles/TopBarStyle.tsx
2023-09-01 15:27:28 +02:00

61 lines
1.4 KiB
TypeScript

import styled from "styled-components";
export const Wrapper = styled("div")`
position: fixed;
top: 0;
left: 0;
width: calc(100% - 2em);
align-items: center;
display: flex;
justify-content: space-between;
height: 5em;
margin-left: 1em;
`;
export const TopBarBox = styled("a")`
margin-left: "2px";
display: flex;
align-items: center;
`;
export const NavItem = styled("button")`
font-size: 20px;
margin: 2px;
background-color: ${(props) => props.theme.palette.cerulean};
font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
&:hover {
border-color: ${(props) => props.theme.palette.jet};
}
`;
export const GithubLogo = styled("img")(() => ({
width: "50px",
height: "50px",
padding: "5px",
}));
export const SideBarBox = styled("div")<{ xPosition: number }>`
z-index: 100;
position: absolute;
top: 2px;
left: calc(100% - 10em);
overflow: overlay;
background-color: ${(props) => props.theme.palette.aero};
text-align: center;
border-radius: 25px;
border: 2px solid #ffffff;
padding-bottom: 5px;
padding-top: 5px;
transform: translateX(${({ xPosition }) => `${xPosition}em`});
transition: transform 0.2s ease-in-out;
`;
export const ExitLayer = styled("div")`
position: absolute;
width: 100vw;
top: 0;
left: 0;
height: 100vh;
z-index: 90;
transform: translateX(-20px);
`;