diff --git a/content/body/acknowledgements.php b/content/body/acknowledgements.php
index 6c126b43..6cb4a750 100644
--- a/content/body/acknowledgements.php
+++ b/content/body/acknowledgements.php
@@ -2,7 +2,7 @@
Originally, Enable started out as a small personal website made by Zoltan Hawryluk to show other developers how to make web-related code accessible to people with disabalities. Some of the solutions were his own, and some he have borrowed, with citations, from others. Zoltan is still the lead developer of this project and often contributes his own code to it, as well as reviewing all contributions from the community.
-
Today, Enable is now sponsored by The Publicis Sapient Center of Excellence, to help not only its developers make accessible things, but also to give back to the accessibility and front-end web development communities. It contains contributions from developers within Publicis Sapient as well as others, and we hope to continue to grow this ongoing collaboration.
+
Today, Enable is now sponsored by The Publicis Sapient Accessibility Center of Excellence, to help not only its developers make accessible things, but also to give back to the accessibility and front-end web development communities. It contains contributions from developers within Publicis Sapient as well as others, and we hope to continue to grow this ongoing collaboration.
What follows are not just acknowledgements to existing accessible code examples used in Enable, but also to other code we have
@@ -25,7 +25,7 @@
Saumyajit Chowdhury for implementing husky pre-commit hooks to run lint-staged before pushing code to the repository
Basia Baldwin for working on redesigning the Enable project and developing the site in dark mode.
-
Matthew Slavin for his redesign of the Enable Project's website in 2024, and to Basia Baldwin and Travis Doughty for
+
Matthew Slavin for his redesign of the Enable Project's website in 2024, and to Basia Baldwin and Travis Doughty for for implementing the redesign on the site.
Alison Hall for cleaning up and streamlining the unit testing and automated testing NPM tasks (and also doing the difficult task of updating the NPM packages within the project in 2024). She also added the Table of Contents component that appears on the top of almost every Enable page.
A space for developers to learn and collaborate on making the web accessible.
-
- Proudly sponsored by The Publicis Sapient Accessibility Centre of Excellence.
-
+
A space for developers to learn and collaborate on making the web accessible.
+
+
+ Proudly sponsored by The
+
+
+
+ Accessibility Centre of Excellence.
@@ -63,7 +70,7 @@
Not only do we want to help developers, but we want the help from developers to contribute their accessible code.
- If you have a component that you'd like to submit - ">please create in a PR.
+ If you have a component that you'd like to submit, please feel free to create a PR.
diff --git a/css/enable-toc.css b/css/enable-toc.css
index ccfa1f8b..31a89f7c 100644
--- a/css/enable-toc.css
+++ b/css/enable-toc.css
@@ -153,6 +153,7 @@
}
.enable__is-dark-mode .enable-toc__link {
color: #FF9F1C;
+ line-height: 1.2;
}
.enable__is-dark-mode .enable-toc__link:visited {
color: #FF9F1C;
diff --git a/css/index.css b/css/index.css
index edb75166..215f42fc 100644
--- a/css/index.css
+++ b/css/index.css
@@ -15,6 +15,14 @@ main {
a {
color: #A76000;
}
+.homepage__sponsor-logo {
+ display: block;
+ margin: 20px auto;
+ width: 200px;
+}
+.homepage__slogan {
+ margin-bottom: 40px;
+}
.homepage__hero {
color: #301414;
min-height: 30vh;
@@ -53,7 +61,6 @@ a {
}
.homepage__hero p {
max-width: 50rem;
- margin-bottom: -30px;
}
.homepage__hero-link {
text-decoration: none;
diff --git a/images/sponsor/ps-logo__color.svg b/images/sponsor/ps-logo__color.svg
new file mode 100644
index 00000000..2bd0ac4e
--- /dev/null
+++ b/images/sponsor/ps-logo__color.svg
@@ -0,0 +1,29 @@
+
+
+
\ No newline at end of file
diff --git a/images/sponsor/ps-logo__white.svg b/images/sponsor/ps-logo__white.svg
new file mode 100644
index 00000000..7e39e54e
--- /dev/null
+++ b/images/sponsor/ps-logo__white.svg
@@ -0,0 +1,34 @@
+
+
\ No newline at end of file
diff --git a/less/enable-toc.less b/less/enable-toc.less
index d95b523a..921a973d 100644
--- a/less/enable-toc.less
+++ b/less/enable-toc.less
@@ -172,6 +172,7 @@
&__link {
color: @light-orange;
+ line-height: 1.2;
&:visited {
color: @light-orange;
diff --git a/less/index.less b/less/index.less
index 4c6f97f8..5f761368 100644
--- a/less/index.less
+++ b/less/index.less
@@ -10,6 +10,16 @@ a {
}
.homepage {
+ &__sponsor-logo {
+ display: block;
+ margin: 20px auto;
+ width: 200px;
+ }
+
+ &__slogan {
+ margin-bottom: 40px;
+ }
+
&__hero {
color: @color0;
min-height: 30vh;
@@ -49,7 +59,6 @@ a {
p {
max-width: 50rem;
- margin-bottom: -30px;
}
}