Skip to content

Commit

Permalink
Merge pull request #57 from jen67/newapp
Browse files Browse the repository at this point in the history
started another challenge
  • Loading branch information
jen67 authored Nov 18, 2023
2 parents 3ec99ef + 59f5369 commit c0ae512
Showing 1 changed file with 46 additions and 2 deletions.
48 changes: 46 additions & 2 deletions space-tourism-website-main/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ button {

.primary-navigation{
--gap: 8rem;
--underline-gap: 2rem;
list-style: none;
padding: 0;
margin: 0;
Expand All @@ -248,6 +249,49 @@ button {
}

.underline-indicators > *{
padding: 1em 0;
border-bottom: .2rem solid hsl( var(--clr-white));
padding: var(--underline-gap, 1rem) 0;
border: 0;
cursor: pointer;
border-bottom: .2rem solid hsl( var(--clr-white) / 0);
}

.underline-indicators > *:hover,
.underline-indicators > *:focus{
border-color: hsl( var(--clr-white) / .5);

}

.underline-indicators > .active,
.underline-indicators > [aria-selected="true"]{
color: hsl( var(--clr-white) / 1);
border-color: hsl( var(--clr-white) / 1);
}

.tab-list{
--gap: 2.5rem;
}

.dot-indicators > * {
cursor: pointer;
border: 0;
border-radius: 50%;
aspect-ratio: 1;
padding: .5em;
background: hsl( var(--clr-white) / .25);
}

.dot-indicators > *:hover,
.dot-indicators > *:focus{
background: hsl( var(--clr-white) / .5);
}

.dot-indicators > [aria-selected="true"]{
background-color: hsl( var(--clr-white) / 1);
}

.number-indicators > * {
cursor: pointer;
aspect-ratio: 1;
padding: 0;
border-radius: 50%;
}

2 comments on commit c0ae512

@vercel
Copy link

@vercel vercel bot commented on c0ae512 Nov 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

dropdown-nav – ./intro-section-with-dropdown-navigation-main

dropdown-nav-gift-amachrees-projects.vercel.app
dropdown-nav-git-main-gift-amachrees-projects.vercel.app
dropdown-nav-three.vercel.app

@vercel
Copy link

@vercel vercel bot commented on c0ae512 Nov 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.