From 3c945d432d2ccd6640b09875efed1e94b0577194 Mon Sep 17 00:00:00 2001 From: Akanksha Dharkar Date: Fri, 7 May 2021 14:42:37 -0700 Subject: [PATCH] Removing outdated link to meetup and subsequent template/css files --- app/components/main-hero/meetup/template.hbs | 17 ------- app/components/main-hero/template.hbs | 2 - app/styles/app.css | 1 - app/styles/components/main-hero-meetup.css | 50 -------------------- 4 files changed, 70 deletions(-) delete mode 100644 app/components/main-hero/meetup/template.hbs delete mode 100644 app/styles/components/main-hero-meetup.css diff --git a/app/components/main-hero/meetup/template.hbs b/app/components/main-hero/meetup/template.hbs deleted file mode 100644 index 32ae2c2..0000000 --- a/app/components/main-hero/meetup/template.hbs +++ /dev/null @@ -1,17 +0,0 @@ - -
-

- Join us -  Wednesday April 14th -  at 4:30pm pst -

- Ember Fastboot SSR & Beyond Meetup -
-
- Register -
-
diff --git a/app/components/main-hero/template.hbs b/app/components/main-hero/template.hbs index 3a18bf0..15a13a4 100644 --- a/app/components/main-hero/template.hbs +++ b/app/components/main-hero/template.hbs @@ -26,6 +26,4 @@ User Guide {{/link-to}} - - {{main-hero/meetup}} diff --git a/app/styles/app.css b/app/styles/app.css index b290c9b..1298318 100644 --- a/app/styles/app.css +++ b/app/styles/app.css @@ -6,7 +6,6 @@ @import "components/command-prompt"; @import "components/fastboot-logo"; @import "components/main-hero"; -@import "components/main-hero-meetup"; @import "components/main-hero-terminal"; @import "components/main-nav"; @import "components/syntax"; diff --git a/app/styles/components/main-hero-meetup.css b/app/styles/components/main-hero-meetup.css deleted file mode 100644 index bd07a1d..0000000 --- a/app/styles/components/main-hero-meetup.css +++ /dev/null @@ -1,50 +0,0 @@ -.main-hero-meetup { - background: rgba(0, 0, 0, 0.33); - border-radius: 0.25em; - color: var(--white); - display: flex; - font-size: 1.125rem; - align-items: center; - padding: 1rem; - display: grid; - grid-gap: 2rem; - margin: 1rem 0 2rem; - grid-template-columns: repeat(3, 1fr); - cursor: pointer; - text-decoration: none; - border: none; -} - -.main-hero-meetup:hover, .main-hero-meetup:focus { - color: var(--white); -} - -.main-hero-meetup .content { - grid-column: 1 / span 2; - font-size: 110%; -} - -.main-hero-meetup .small { - font-size: 90%; -} - -.main-hero-meetup .invite { - margin: 0; - font-size: 1rem; - margin-bottom: 0.25rem; -} - -.main-hero-meetup .button { - align-items: center; - text-align: center; - border-radius: 0.25rem; - border: 2px solid var(--white); - min-width: 10em; - padding: 0.55em 2em 0.75em; - text-align: center; - text-decoration: none; -} - -.orange { - color: #FFA91B; -}