Skip to content

Commit

Permalink
events style updates
Browse files Browse the repository at this point in the history
  • Loading branch information
gdepadesign committed Nov 19, 2024
1 parent 8be94d5 commit 58dd7ea
Showing 1 changed file with 80 additions and 21 deletions.
101 changes: 80 additions & 21 deletions directories/events-directory/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,86 @@
border-bottom: 1px solid rgba(235, 235, 235, 0);
}

/* ––––––––––– */


/* Cover */

.cover-cta {
display: flex;
flex-direction: row;
gap: 20px;
}

.cover-image img {
max-height: 55vh;
}

.cover-cta .details {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
background: #002e67;
padding: 10px 15px;
border-radius: 4px;
font-size: 15px;
line-height: 1.5em;
color: #fff;
transition: all 0.3s ease-in-out;
}

.cover-cta .details:hover {
background: #002452;
}

.cover-cta .details:any-link {
color: #fff !important;
}

.cover-cta .details-negative {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
background: rgba(255, 255, 255, 0);
padding: 10px 15px;
border: 1px solid #fff;
border-radius: 4px;
font-size: 15px;
line-height: 1.5em;
color: #fff;
transition: all 0.3s ease-in-out;
}

.cover-cta .details-negative:hover,
.cover-cta .details-negative:focus {
background: rgba(255, 255, 255, 1);
color: #002E67 !important;
}

.details {
display: flex;
align-items: center;
background: #002e67;
padding: 10px 15px;
border-radius: 4px;
font-size: 15px;
line-height: .7em;
color: #fff;
transition: all 0.3s ease-in-out;
}

.details:hover {
background: #002452;
color: #fff;
}

.details:any-link {
color: #fff !important;
}


/* ––––––––––– */

.section-title {
Expand Down Expand Up @@ -756,27 +836,6 @@
padding: 0px;
}

.details {
display: flex;
align-items: center;
background: #002e67;
padding: 10px 15px;
border-radius: 4px;
font-size: 15px;
line-height: .7em;
color: #fff;
transition: all 0.3s ease-in-out;
}

.details:hover {
background: #002452;
color: #fff;
}

.details:any-link {
color: #fff !important;
}

/* –––––––––––––––– */


Expand Down

0 comments on commit 58dd7ea

Please sign in to comment.