Skip to content

Commit

Permalink
Initial Menu
Browse files Browse the repository at this point in the history
  • Loading branch information
vickkie committed Mar 1, 2024
1 parent 4c3ce5d commit 5d0a52e
Show file tree
Hide file tree
Showing 8 changed files with 1,131 additions and 8 deletions.
Binary file added assets/images/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
91 changes: 89 additions & 2 deletions css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ body {
--stick-white: #fff;

--font-1: grotesk-diamond;
--font-2: LA-LUXE;
--font-2: MonumentExtended;
--font-3: grotesk;

color: var(--color-black);
background-color: var(--color-bg);
font-family: var(--font-1), sans-serif;
font-family: var(--font-2), sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeSpeed;
Expand Down Expand Up @@ -76,3 +76,90 @@ a:focus-visible {
outline: 2px solid #fff;
background: transparent;
}

.hero-main {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 70px repeat(2, 1fr);
grid-template-areas:
"... ... ..."
"... ... ..."
"images ... ...";
}

.images {
grid-area: images;
}

.nav {
z-index: 998;
position: absolute;
top: 0%;
bottom: auto;
left: 0%;
right: 0%;
}
.padding_global.nav_padding {
padding-top: 1rem;
padding-bottom: 1rem;
}
.padding_global {
height: 100%;
padding-left: 2.5%;
padding-right: 2.5%;
}
@media screen and (max-width: 991px) {
.nav_grid {
grid-column-gap: 0rem;
grid-row-gap: 0rem;
}
}
.nav_grid {
grid-column-gap: 1rem;
grid-row-gap: 1rem;
grid-template-rows: auto;
grid-template-columns: 1fr 1fr 1fr;
grid-auto-columns: 1fr;
grid-auto-flow: row;
justify-content: space-between;
align-items: center;
display: grid;
}
.nav_logo_parent {
justify-content: flex-start;
display: flex;
overflow: hidden;
}
.est_nav {
align-items: flex-start;
display: flex;
overflow: hidden;
justify-content: center;
cursor: pointer;
}
.est_nav svg {
padding-left: 8px;
}

.nav_menu_btn {
width: auto;
height: auto;
cursor: pointer;
background-color: rgba(239, 239, 239, 0);
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0 10px;
display: flex;
}

.mid-moon--dark {
fill: var(--color-black);
}
.mid-moon--light {
fill: var(--color-bg);
}

.logo-close {
color: var(--color-black);
}
Loading

0 comments on commit 5d0a52e

Please sign in to comment.