bravo68web-portfolio-nextjs/components/nav.style.js

66 lines
1.1 KiB
JavaScript
Raw Normal View History

2022-01-05 06:31:08 +00:00
import styled from "styled-components";
export default styled.nav`
2022-04-01 13:25:24 +00:00
background: rgb(52, 47, 50);
background: linear-gradient(
90deg,
rgba(52, 47, 50, 1) 0%,
rgba(96, 97, 103, 1) 60%
);
2022-01-05 06:31:08 +00:00
padding: 20px;
position: fixed;
top: 0;
left: 0;
2022-04-03 15:19:59 +00:00
z-index: 10;
2022-01-05 06:31:08 +00:00
width: 100vw;
display: flex;
font-size: 1.5em;
2022-01-05 06:31:08 +00:00
align-items: center;
justify-content: space-between;
.title {
display: flex;
}
.links {
display: flex;
.link {
/* padding: 20px; */
margin-left: 10px;
2022-05-02 12:16:18 +00:00
color: #fff;
border-radius: 5px;
2022-05-02 12:16:18 +00:00
&:hover {
color: #111111;
background-color: #6ffc03;
}
}
2022-04-01 16:45:30 +00:00
@media (max-width: 900px) {
display: none;
}
}
.menu {
button {
color: white !important;
}
@media (min-width: 901px) {
display: none;
}
}
.indicator {
.circle {
height: 10px;
width: 10px;
border-radius: 100%;
margin-top: 8px;
margin-left: 5px;
/* margin-right: auto;
flex: start; */
}
.green {
2022-04-02 19:52:51 +00:00
background-color: #6ffc03;
}
.red {
2022-04-02 19:52:51 +00:00
background-color: #fc0703;
}
}
2022-01-05 06:31:08 +00:00
`;