Skip to content
This repository was archived by the owner on Nov 21, 2022. It is now read-only.

Commit 347590d

Browse files
committed
Initial site for Bridge Foundry
1 parent 29d31b1 commit 347590d

File tree

3 files changed

+196
-0
lines changed

3 files changed

+196
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea/*
2+
.DS_Store

bridgefoundry.html

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<html>
2+
<head>
3+
<link href="resources/bridgefoundry.css" rel="stylesheet">
4+
<link href='http://fonts.googleapis.com/css?family=Lato:400,700|Crete+Round' rel='stylesheet' type='text/css'>
5+
</head>
6+
<body>
7+
<header>
8+
<div class="nav-container">
9+
<div class="logo"><a href="#home">Bridge Foundry</a></div>
10+
<div class="nav">
11+
<ul>
12+
<li><a href="#about">About</a></li>
13+
<li><a href="#helping">Helping</a></li>
14+
<li><a href="#process">Processes</a></li>
15+
</ul>
16+
</div>
17+
</div>
18+
</header>
19+
<a name="home"></a>
20+
<div class="home">
21+
<div class="inner-contents">
22+
<h2>Bridge Foundry is working to improve the state of tech, especially for humans.</h2>
23+
<p>Technology gets better with more diversity. So we help organizations who train, mentor, and encourage diverse groups of
24+
people to get involved in technology.</p>
25+
<p>Does your organization need help fundraising or organizing events?
26+
Bridge Foundry is a project of <a href="http://schoolfactory.org/">School Factory</a>, and can help you
27+
accept tax-deductible donations. We also have a lot of experience
28+
teaching, mentoring, organizing, and having fun, and we love to share
29+
our expertise, so drop us a line!</p>
30+
</div>
31+
</div>
32+
<div class="about">
33+
<a name="about"></a>
34+
<div class="inner-contents">
35+
<h2>About Bridge Foundry</h2>
36+
<p>
37+
Bridge Foundry was formed in late 2012 by the people who make <a href="http://www.railsbridge.org">RailsBridge</a> workshops happen.
38+
We'd been thinking about pursuing 501(c)3 non-profit status, and after some research into
39+
the mountains of paperwork and infrastructure required, chose to find a fiscal sponsor instead.
40+
(In the United States, a <a href="http://en.wikipedia.org/wiki/Fiscal_sponsorship">fiscal sponsor</a> is a non-profit that extends its tax-exempt status to
41+
partner organizations.)</p>
42+
43+
<p>Rather than just securing non-profit status for RailsBridge, we realized we had an opportunity to help other
44+
organizations that are doing similar work in a variety of tech communities. And so Bridge Foundry was born:
45+
a parent organization that RailsBridge could create for itself and other groups.</p>
46+
47+
<p>School Factory's mission is to transform education,
48+
and two of the ways they do that is through the <a href="http://schoolfactory.org/spacefed">Space Federation</a>
49+
, a collection of hacker and maker spaces,
50+
and through <a href="http://schoolfactory.org/node/5">Emergentcy Schools</a>, "programs that engage people in the creation of communities of practice &mdash; focused on a culture of creativity, constructivism, and project-based learning." School Factory's executive director James Carlson
51+
is helping Bridge Foundry establish its long-term goals as well as providing the non-profit status that will
52+
help smaller groups accept tax-deductible donations.</p>
53+
<p>
54+
</p>
55+
</div>
56+
</div>
57+
<div class="helping">
58+
<div class="inner-contents">
59+
<a name="helping"></a>
60+
<h2>Helping!</h2>
61+
<p>Bridge Foundry is a 100% volunteer effort, and we can always use donations of time, treasure, or talent.
62+
If you're interested in helping, please drop us a line at [email address].</p>
63+
<p>We're especially interested in making connections with groups that are working to make tech a better industry
64+
and could benefit from our tax-exempt status. [how to get in touch]</p>
65+
<p>We currently work with:</p>
66+
<ul>
67+
<li><a href="http://www.railsbridge.org">RailsBridge</a></li>
68+
<li><a href="http://www.railsmentors.org/">Rails Mentors</a></li>
69+
<li><a href="http://teachingkids.railsbridge.org/">RailsBridge's Teaching Kids initiative</a></li>
70+
</ul>
71+
</div>
72+
73+
</div>
74+
<div class="processes">
75+
<div class="inner-contents">
76+
<a name="processes"></a>
77+
<h2>Processes</h2>
78+
<p>Working with Bridge Foundry means that donations are made directly to School Factory (usually by check or PayPal),
79+
and that the School Factory staff then works with the individual group to distribute the funds as needed.</p>
80+
<p>RailsBridge, which puts on free Rails workshops, has published their policies <a href="https://github.com/railsbridge/docs/wiki/Money-Things">
81+
on their wiki</a>. If your organization
82+
could benefit from a similar set up, please get in touch! [ + how to get in touch]</p>
83+
</div>
84+
</div>
85+
</body>
86+
</html>

resources/bridgefoundry.css

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
body {
2+
margin: 0;
3+
font-family: "Lato", sans;
4+
font-weight: 400;
5+
}
6+
7+
body a {
8+
color: #0B486B;
9+
}
10+
11+
.inner-contents {
12+
width: 900px;
13+
padding: 30px;
14+
margin: 0 auto;
15+
}
16+
17+
.home {
18+
padding-top: 40px;
19+
background-color: #A8DBA8;
20+
}
21+
22+
.about {
23+
background-color: #79BD9A;
24+
}
25+
26+
.helping {
27+
background-color: #3B8686;
28+
}
29+
30+
.processes {
31+
background-color: #0B486B;
32+
}
33+
34+
.processes a {
35+
color: #3B8686;
36+
}
37+
38+
/*font style*/
39+
40+
h1 {
41+
font-family: "Crete Round", serif;
42+
font-size: 40px;
43+
}
44+
45+
h2 {
46+
font-family: "Crete Round", serif;
47+
font-size: 30px;
48+
}
49+
50+
h3 {
51+
font-family: "Lato", serif;
52+
font-size: 25px;
53+
font-weight: 700;
54+
}
55+
56+
p {
57+
font-size: 20px;
58+
}
59+
60+
li {
61+
font-size: 20px;
62+
}
63+
64+
/*Header Styles*/
65+
66+
header {
67+
position: fixed;
68+
width: 100%;
69+
background-color: #0B486B;
70+
height: 50px;
71+
line-height: 50px;
72+
color: white;
73+
}
74+
75+
header a {
76+
text-decoration: none;
77+
color: white;
78+
}
79+
80+
header a:hover {
81+
color: rgb(211, 214, 233);
82+
}
83+
84+
header ul {
85+
margin: 0;
86+
}
87+
88+
header li {
89+
display: inline;
90+
list-style-type: none;
91+
margin: 0 20px;
92+
font-size: 18px;
93+
}
94+
95+
.nav {
96+
float: right;
97+
}
98+
99+
.logo {
100+
float: left;
101+
font-family: "Crete Round", serif;
102+
font-size: 25px;
103+
}
104+
105+
.nav-container {
106+
width: 900px;
107+
margin: 0 auto;
108+
}

0 commit comments

Comments
 (0)