-
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.
- Loading branch information
1 parent
e8f066d
commit 289cb5a
Showing
7 changed files
with
445 additions
and
48 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
wp-content/themes/academyAfrica/assets/css/dist/pages/events.css.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
210 changes: 210 additions & 0 deletions
210
wp-content/themes/academyAfrica/assets/css/dist/pages/single_event.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
wp-content/themes/academyAfrica/assets/css/dist/pages/single_event.css.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
94 changes: 94 additions & 0 deletions
94
wp-content/themes/academyAfrica/assets/css/src/pages/single_event.scss
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 |
---|---|---|
@@ -0,0 +1,94 @@ | ||
@use "../abstracts/" as *; | ||
|
||
.single-page-event { | ||
max-width: 1920px; | ||
padding: 20px; | ||
.image-container { | ||
position: relative; | ||
width: 100%; | ||
height: 300px; /* Set your specific height here */ | ||
overflow: hidden; | ||
margin: 50px 0; | ||
} | ||
.featured-image { | ||
width: 100%; | ||
height: 100%; | ||
object-fit: cover; /* This property crops the image while maintaining its aspect ratio */ | ||
} | ||
.divider { | ||
height: 0.5px; | ||
background: #a9a9a9; | ||
margin: 40px 0; | ||
border: none; | ||
} | ||
.custom-data { | ||
p { | ||
color: #000; | ||
font-family: Open Sans; | ||
font-size: 18px; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 24px; /* 133.333% */ | ||
text-transform: uppercase; | ||
margin-bottom: 20px; | ||
& .speaker { | ||
color: var(--shades-black, #000); | ||
font-family: Open Sans; | ||
font-size: 18px; | ||
font-style: normal; | ||
font-weight: 700; | ||
line-height: 24px; /* 133.333% */ | ||
letter-spacing: -0.36px; | ||
} | ||
} | ||
} | ||
.content { | ||
color: var(--shades-black, #000); | ||
font-family: Open Sans; | ||
font-size: 18px; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 28px; /* 155.556% */ | ||
} | ||
.linked-post { | ||
.title { | ||
color: var(--primary-700, #0c1a81); | ||
font-family: Open Sans; | ||
font-size: 18px; | ||
font-style: normal; | ||
font-weight: 700; | ||
line-height: 24px; /* 133.333% */ | ||
} | ||
.name { | ||
color: var(--shades-black, #000); | ||
font-family: Open Sans; | ||
font-size: 18px; | ||
font-style: normal; | ||
font-weight: 700; | ||
line-height: 24px; /* 133.333% */ | ||
letter-spacing: -0.36px; | ||
} | ||
.description { | ||
color: var(--shades-black, #000); | ||
font-family: Open Sans; | ||
font-size: 18px; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 28px; /* 155.556% */ | ||
} | ||
* { | ||
margin-top: 32px; | ||
} | ||
} | ||
} | ||
|
||
@include media-breakpoint-up(large) { | ||
.single-page-event { | ||
padding: 20px 148px; | ||
} | ||
} | ||
@include media-breakpoint-up(xlarge) { | ||
.single-page-event { | ||
padding: 20px 388px; | ||
} | ||
} |
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
Oops, something went wrong.