mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
39 lines
710 B
JavaScript
39 lines
710 B
JavaScript
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
const NavStyles = styled.nav`
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: center;
|
||
|
|
font-size: 2rem;
|
||
|
|
gap: 1.5rem;
|
||
|
|
|
||
|
|
a,
|
||
|
|
button {
|
||
|
|
padding: 1rem 3rem;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
position: relative;
|
||
|
|
text-transform: uppercase;
|
||
|
|
font-weight: 900;
|
||
|
|
font-size: 1.8rem;
|
||
|
|
background: none;
|
||
|
|
border: 0;
|
||
|
|
cursor: pointer;
|
||
|
|
|
||
|
|
@media (max-width: 700px) {
|
||
|
|
font-size: 1.5rem;
|
||
|
|
padding: 0 10px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
@media (max-width: 1300px) {
|
||
|
|
// border-top: 1px solid var(--lightGray);
|
||
|
|
width: 100%;
|
||
|
|
justify-content: center;
|
||
|
|
font-size: 1.5rem;
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export default NavStyles;
|