forked from Feminine-Divine/periodo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
6,904 additions
and
2,748 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,77 @@ | ||
/** @format */ | ||
|
||
.nav-img{ | ||
position: relative; | ||
left: 2%; | ||
.nav-img { | ||
position: relative; | ||
left: 2%; | ||
} | ||
.Nav-bar{ | ||
width: 90%; | ||
height: 150px; | ||
.Nav-bar { | ||
width: 90%; | ||
padding: 0.5rem 1rem; | ||
font-size: 20px; | ||
font-weight: 700; | ||
} | ||
.main-navbar{ | ||
width: 100%; | ||
margin-right: 10px; | ||
font-size: 20px; | ||
font-weight: 700; | ||
} | ||
.Nav-bar:hover{ | ||
border-radius: 2rem; | ||
box-shadow: 2px 2px 3px 3px cyan, | ||
2px 2px 5px 4px cyan; | ||
color: turquoise; | ||
.main-navbar { | ||
width: 100%; | ||
margin-right: 10px; | ||
} | ||
#nav-btn,.toggle{ | ||
display: none; | ||
.Nav-bar:hover { | ||
border-radius: 2rem; | ||
box-shadow: 2px 2px 3px 3px cyan, 2px 2px 5px 4px cyan; | ||
color: turquoise; | ||
} | ||
#nav-btn, | ||
.toggle { | ||
display: none; | ||
} | ||
|
||
|
||
/***********Responsive********/ | ||
|
||
@media (min-width:400px) and (max-width:700px){ | ||
.main-navbar{ | ||
display: none; | ||
visibility: hidden; | ||
} | ||
|
||
.toggle{ | ||
display: block; | ||
width: 30px; | ||
height: 20px; | ||
position: absolute; | ||
top: 4%; | ||
right: 2%; | ||
} | ||
.Nav-bar{ | ||
position: relative; | ||
right: -60%; | ||
text-align: center; | ||
text-transform: capitalize; | ||
} | ||
.toggel-btn{ | ||
width: 30px; | ||
min-height: 7px; | ||
margin: 2px; | ||
background-color: white; | ||
@media (min-width: 400px) and (max-width: 700px) { | ||
.main-navbar { | ||
display: none; | ||
visibility: hidden; | ||
} | ||
|
||
} | ||
.toggle { | ||
display: block; | ||
width: 30px; | ||
height: 20px; | ||
position: absolute; | ||
top: 4%; | ||
right: 2%; | ||
} | ||
.Nav-bar { | ||
position: relative; | ||
right: 20%; | ||
z-index: 10; | ||
text-align: center; | ||
text-transform: capitalize; | ||
padding: 20px; | ||
margin-bottom: 3px; | ||
width: 170px; | ||
color: rgba(34, 19, 51, 1); | ||
background-color: rgba(238, 164, 193, 0.993); | ||
} | ||
.toggel-btn { | ||
width: 30px; | ||
min-height: 7px; | ||
margin: 2px; | ||
background-color: white; | ||
} | ||
|
||
#nav-btn:checked+.main-navbar{ | ||
display: flex; | ||
flex-direction: column; | ||
visibility: visible; | ||
} | ||
.Nav-bar:hover{ | ||
color: red; | ||
} | ||
#nav-btn:checked + .main-navbar { | ||
display: flex; | ||
flex-direction: column; | ||
visibility: visible; | ||
} | ||
.Nav-bar:hover { | ||
color: rgb(241, 182, 217); | ||
background-color: rgba(34, 19, 51, 1); | ||
} | ||
} | ||
|
||
@media screen and (max-width:400px){ | ||
|
||
.Nav-bar{ | ||
right: -30%; | ||
} | ||
|
||
} | ||
@media screen and (max-width: 400px) { | ||
.Nav-bar { | ||
right: -30%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
import styled from "@emotion/styled" | ||
/** @format */ | ||
|
||
export const Header = styled("div")` | ||
width:100%; | ||
color:white; | ||
background-color:black; | ||
display:flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
` | ||
export const Nav = styled("div") | ||
` | ||
width:auto; | ||
` | ||
import styled from '@emotion/styled'; | ||
|
||
export const Header = styled('div')` | ||
width: 100%; | ||
color: white; | ||
background-color: black; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
`; | ||
export const Nav = styled('div')` | ||
width: auto; | ||
height: 70px; | ||
padding: 30px; | ||
`; | ||
|
||
export const PageBody = styled("div")` | ||
export const PageBody = styled('div')` | ||
width: 100%; | ||
height: 100%; | ||
padding: 2em; | ||
` | ||
`; |
Oops, something went wrong.