Skip to content

Commit 30b126a

Browse files
committed
Merge pull request #2 from saltinejustine/master
img assets, colors and fonts added
2 parents 0cb0bbb + 1e9e74e commit 30b126a

11 files changed

+50
-10
lines changed

site/css/screen.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
body,html {
2+
height : 100%;
3+
color: #fff;
4+
font-family: 'Open Sans', Helvetica, sans-serif;
5+
font-weight: 400;
6+
font-size: 20px;
7+
text-align: center;
8+
}
9+
10+
nav {
11+
background: #ac2931;
12+
width: 100%;
13+
height: 105px;
14+
}
15+
16+
#main {
17+
background: #811f25;
18+
}
19+
20+
#more-info {
21+
background: #ac2931;
22+
}

site/img/.gitkeep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

site/img/br_bg.png

10.7 KB
Loading

site/img/icon_about.png

1.25 KB
Loading

site/img/icon_ribbon.png

1.43 KB
Loading

site/img/icon_twitter.png

1.4 KB
Loading

site/img/numbers_1.png

1.11 KB
Loading

site/img/numbers_2.png

1.25 KB
Loading

site/img/numbers_3.png

1.3 KB
Loading

site/img/whiteribbon.png

9.82 KB
Loading

site/white_ribbon.html

Lines changed: 27 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,39 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,800' rel='stylesheet' type='text/css'>
45
<title>White Ruby Ribbon</title>
6+
<link rel="stylesheet" href="css/screen.css">
57
</head>
68
<body>
7-
<h1 id="main_title">White Ruby Ribbon</h1>
89

9-
<p id="white_ribbon_pledge">By wearing a white ribbon to Ruby community events, I pledge<p>
10+
<nav>
11+
<ul>
12+
<li><a href="#">Take the pledge</a></li>
13+
<li>
14+
<li><a href="#">Learn more</a></li>
15+
<li>
16+
<li><a href="#">Tweet support</a></li>
17+
<li>
18+
</ul>
19+
<nav>
1020

11-
<ul id="individual_pledges">
12-
<li>to speak out against all forms of violence against women</li>
13-
<li>to learn about, and follow the code of conduct</li>
14-
<li>to speak out when the code of conduct is not honored</li>
15-
</ul>
21+
<div id="main">
22+
<h1 id="main_title">White Ruby Ribbon</h1>
23+
<p id="white_ribbon_pledge">By wearing a white ribbon to Ruby community events, I pledge<p>
1624

17-
<aside id="more_info">
18-
<a href="about.html">What is this?</a>
19-
</aside>
25+
<ul id="individual_pledges">
26+
<li>to speak out against all forms of violence against women</li>
27+
<li>to learn about, and follow the code of conduct</li>
28+
<li>to speak out when the code of conduct is not honored</li>
29+
</ul>
30+
</div>
31+
32+
<div id="more-info">
33+
<aside id="more_info">
34+
<a href="about.html">What is this?</a>
35+
</aside>
36+
</div>
2037

2138
</body>
2239
</html>

0 commit comments

Comments
 (0)