Skip to content

Commit 1922522

Browse files
committed
Added quotes and refactored landing page
1 parent b70742d commit 1922522

File tree

2 files changed

+54
-16
lines changed

2 files changed

+54
-16
lines changed

assets/style.css

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,17 @@ nav a:hover{
3737
.section{
3838
margin-bottom: 1%;
3939
}
40-
.half{width: 45%; display:inline-block; margin: 0;}
40+
.half{width: 45%;}
41+
#section-2{
42+
display: flex;
43+
}
4144
#arcquotes{
42-
border-left: 3px solid #ffbb33;
45+
width: 70%;
4346
padding:2%;
4447
}
4548
#learnmore{
46-
position: relative;
47-
top: -150;
49+
border-left: 3px solid #ffbb33;
50+
padding:2%;
4851
}
4952
#keystone{
5053
width: 40px;
@@ -83,6 +86,17 @@ input{
8386
input::-webkit-input-placeholder{
8487
color:white;
8588
}
89+
.quote{
90+
display: flex;
91+
margin-bottom: 2%;
92+
}
93+
.quote-avatar{
94+
width: 75px;
95+
height: 75px;
96+
}
97+
.caption{
98+
margin-left: 3%;
99+
}
86100

87101
.cell{
88102
width:30%;
@@ -121,9 +135,9 @@ footer{
121135

122136
}
123137
.avatar{
124-
display: inline-block;
125138
width: 40px;
126139
}
140+
127141
.codebox{
128142
display:inline-block;
129143
background: none repeat scroll 0% 0% #444;
@@ -139,10 +153,10 @@ hr{
139153
}
140154
#contribute{
141155
display: flex;
142-
flex-flow: row wrap;
156+
flex-flow: column wrap;
143157
}
144158
#contribute *{
145-
flex-basis: 100%;
159+
146160
}
147161

148162
#contribute ul{ flex-basis: 40% }

index.html

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,38 @@ <h1>What is Arc? The Hundred Year Language</h1>
1414

1515
<p>Arc is a powerful, practical programmable programming language built up from axioms. Arc was created by paul graham and & robert morris </p>
1616
<hr>
17-
<div class="half" id="learnmore">
17+
</div>
18+
<div class="section" id="section-2">
19+
<div id="arcquotes">
20+
<div class="quote">
21+
<img src='/assets/pg.jpg', class='quote-avatar'>
22+
<div class="caption">
23+
"By way of summary, let's try describing the hacker's dream language. The dream language is beautiful, clean, and terse." <h3>—Paul Graham</h3>
24+
</div>
25+
</div>
26+
<div class="quote">
27+
<img src='/assets/alankay.jpg', class='quote-avatar'>
28+
<div class="caption">
29+
"Lisp isn't a language, it's a building material."
30+
<h3> —Alan Kay</h3>
31+
</div>
32+
</div>
33+
<div class="quote">
34+
<img src='/assets/ericraymond.jpg', class='quote-avatar'>
35+
<div class="caption">
36+
"Lisp is worth learning for the profound enlightenment experience you will have when you finally get it; that experience will make you a better programmer for the rest of your days, even if you never actually use Lisp itself a lot."
37+
<h3> —Eric Raymond</h3>
38+
</div>
39+
</div>
40+
<div class="quote">
41+
<img src='/assets/pg.jpg', class='quote-avatar'>
42+
<div class="caption">
43+
"Nothing is hidden from you that doesn't absolutely have to be. The language offers abstractions only as a way of saving you work, rather than as a way of telling you what to do. In fact, the language encourages you to be an equal participant in its design. You can change everything about it, including even its syntax, and anything you write has, as much as possible, the same status as what comes predefined."
44+
<h3>—Paul Graham</h3>
45+
</div>
46+
</div>
47+
</div>
48+
<div id="learnmore">
1849
<h3>Learn More:</h3>
1950
<ul>
2051
<li><a href="http://paulgraham.com/hundred.html">The Hundred Year Language</a></li>
@@ -23,20 +54,13 @@ <h3>Learn More:</h3>
2354
<li><a href="https://arclanguage.github.io/">Arc-Language Documentation</a></li>
2455
</ul>
2556
</div>
26-
<div class="half" id="arcquotes">
27-
<p> "By way of summary, let's try describing the hacker's dream language. The dream language is beautiful, clean, and terse."</p>
28-
<p> "Lisp is worth learning for the profound enlightenment experience you will have when you finally get it; that experience will make you a better programmer for the rest of your days, even if you never actually use Lisp itself a lot."</p>
2957

30-
<p>
31-
"Nothing is hidden from you that doesn't absolutely have to be. The language offers abstractions only as a way of saving you work, rather than as a way of telling you what to do. In fact, the language encourages you to be an equal participant in its design. You can change everything about it, including even its syntax, and anything you write has, as much as possible, the same status as what comes predefined."
32-
</p>
33-
</div>
3458
</div>
3559
<hr>
3660
<div>
3761
<div class='cell'> <h3> <i class="fa fa-cubes"></i> 40 Stones and Counting</h3></div>
3862
<div class='cell'> <h3> <i class="fa fa-line-chart"></i>400 Downloads and Counting</h3></div>
39-
<div class='cell'> <h3> <i class="fa fa-users"></i>15 Developers and Counting</h3></div>
63+
<div class='cell'> <h3> <i class="fa fa-users"></i>150 Developers and Counting</h3></div>
4064

4165
</div>
4266
<hr>

0 commit comments

Comments
 (0)