Skip to content

Commit 406aeb5

Browse files
authored
Merge pull request #246 from CodeForPhilly/website-update
Improve adherence to design document, improve styling and accessibility, improve responsive layout, add some copy text
2 parents e106b77 + e8c32bc commit 406aeb5

23 files changed

+210
-55
lines changed

package-lock.json

Lines changed: 31 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"dependencies": {
3+
"@fontsource/open-sans": "^5.2.7",
4+
"@fontsource/ramaraja": "^5.2.8"
5+
}
6+
}
Lines changed: 37 additions & 0 deletions
Loading
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
### Empathy
22

3-
There is a need in the non-profit community for easy-to-use and open source screener-building toolkits. Many small non-profits resort to building eligibility screening tools with Excel because this is the only low-cost and low-code option available to them.
3+
For people who are entitled to benefits and organizations who work to help them get those benefits
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
### Inclusivity
22

3-
There is a need in the non-profit community for easy-to-use and open source screener-building toolkits. Many small non-profits resort to building eligibility screening tools with Excel because this is the only low-cost and low-code option available to them.
3+
Stand against discrimination with regard to race, gender, religion, etc.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
### Transparency
22

3-
There is a need in the non-profit community for easy-to-use and open source screener-building toolkits. Many small non-profits resort to building eligibility screening tools with Excel because this is the only low-cost and low-code option available to them.
3+
Remain open source and accessible
Lines changed: 30 additions & 0 deletions
Loading
Lines changed: 29 additions & 0 deletions
Loading
650 KB
Loading

website/src/components/Contact.astro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import wedge from "../assets/backgrounds/wedge.svg";
1414
<div><label for="name">Name:</label></div>
1515
<div>
1616
<input
17-
class="my-3 p-3 border-2 border-sky-500 rounded-2xl"
17+
class="my-3 p-3 w-full border-2 border-sky-500 rounded-2xl"
1818
type="text"
1919
name="name"
2020
id="name"
@@ -24,7 +24,7 @@ import wedge from "../assets/backgrounds/wedge.svg";
2424
<div><label for="name">Email:</label></div>
2525
<div>
2626
<input
27-
class="my-3 p-3 border-2 border-sky-500 rounded-2xl"
27+
class="my-3 p-3 w-full border-2 border-sky-500 rounded-2xl"
2828
type="text"
2929
name="email"
3030
id="email"
@@ -34,21 +34,21 @@ import wedge from "../assets/backgrounds/wedge.svg";
3434
<div><label for="name">Message:</label></div>
3535
<div>
3636
<textarea
37-
class="my-3 p-3 border-2 border-sky-500 rounded-2xl"
37+
class="my-3 p-3 w-full h-40 border-2 border-sky-500 rounded-2xl"
3838
name="message"
3939
id="message"
4040
placeholder="Your message"></textarea>
4141
</div>
4242
<input
43-
class="px-4 py-2 mt-3 font-serif font-bold bg-green-300 rounded-full text-lg cursor-pointer"
43+
class="px-6 py-2 mt-3 font-serif font-bold bg-green-300 rounded-full text-lg cursor-pointer"
4444
type="submit"
4545
value="Submit"
4646
size=""
4747
/>
4848
</form>
4949
</div>
5050
<div
51-
class="sm:w-3/5 bg-[url(../assets/photos/man-in-office.png)] bg-cover hidden sm:block"
51+
class="sm:w-3/5 bg-[url(../assets/photos/man-in-office.png)] bg-cover bg-center hidden sm:block"
5252
>
5353
<img class="h-full relative right-0.5" src={wedge.src} alt="" />
5454
</div>

0 commit comments

Comments
 (0)