Skip to content

Commit b7710a9

Browse files
author
Stephan Boyer
committed
issue #298
1 parent c7cc7dd commit b7710a9

File tree

2 files changed

+26
-35
lines changed

2 files changed

+26
-35
lines changed

ui/website/index.htm

+6
Original file line numberDiff line numberDiff line change
@@ -726,9 +726,15 @@
726726
<body>
727727
<div id="main">
728728
<div id="left-column">
729+
<h1>The Julia Language</h1>
729730
<a href="/" class="current-page"><img class="bullet" src="images/bullet.png" alt="" /> Interactive Prompt</a>
730731
<a href="http://github.com/JuliaLang/julia/wiki"><img class="bullet" src="images/bullet.png" alt="" /> Documentation</a>
731732
<a href="http://julialang.org/"><img class="bullet" src="images/bullet.png" alt="" /> Julia Home</a>
733+
<h2>Quick Reference</h2>
734+
<p>For help, try one of these:</p>
735+
<code>help()</code> <br />
736+
<code>help(function)</code> <br />
737+
<code>apropos("string")</code>
732738
</div>
733739
<div id="right-column">
734740
<form id="terminal-form">

ui/website/styles.css

+20-35
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
body
1010
{
1111
font: 100% 'Arial', sans-serif;
12-
color: #555555;
12+
color: #666;
13+
background-color: #eee;
1314
}
1415

1516
div#main
@@ -36,7 +37,7 @@ div#left-column a
3637
padding: 5px;
3738
padding-left: 20px;
3839
text-decoration: none;
39-
color: #444444;
40+
color: #666;
4041
font-size: 100%;
4142
}
4243

@@ -47,7 +48,7 @@ div#left-column a.current-page
4748

4849
div#left-column a:hover
4950
{
50-
background-color: #ececec;
51+
background-color: #f6f6f6;
5152
}
5253

5354
div#right-column
@@ -56,32 +57,6 @@ div#right-column
5657
float: right;
5758
}
5859

59-
img#logo
60-
{
61-
display: block;
62-
float: left;
63-
}
64-
65-
img#slogan
66-
{
67-
display: block;
68-
float: right;
69-
}
70-
71-
img#landing
72-
{
73-
display: block;
74-
border: 1px solid #cccccc;
75-
-moz-box-shadow: 0px 0px 20px #888888;
76-
-webkit-box-shadow: 0px 0px 20px #888888;
77-
box-shadow: 0px 0px 20px #888888;
78-
}
79-
80-
img#mit-logo
81-
{
82-
float: right;
83-
}
84-
8560
img.bullet
8661
{
8762
padding-bottom: 3px;
@@ -96,21 +71,22 @@ ul
9671

9772
h1
9873
{
99-
color: #0d4d73;
100-
font-size: 170%;
74+
font-size: 130%;
10175
font-weight: bold;
102-
text-shadow: 1px 1px 3px #e2e2e2;
10376
margin-top: 20px;
10477
margin-bottom: 10px;
78+
text-shadow: 1px 1px 1px #fff;
79+
color: #666;
10580
}
10681

10782
h2
10883
{
109-
font-size: 130%;
84+
font-size: 110%;
11085
font-weight: bold;
111-
text-shadow: 1px 1px 3px #e6e6e6;
11286
margin-top: 20px;
11387
margin-bottom: 10px;
88+
text-shadow: 1px 1px 1px #fff;
89+
color: #999;
11490
}
11591

11692
p
@@ -119,13 +95,22 @@ p
11995
margin-bottom: 10px;
12096
}
12197

98+
code
99+
{
100+
font: 85% "Droid Sans Mono", "Consolas", "Courier", "Courier New", monospace;
101+
background-color: #f6f6f6;
102+
}
103+
122104
form#terminal-form
123105
{
124106
border-right: 1px solid #d9d9d9;
125107
padding: 20px;
126-
background-color: #fafafa;
108+
background-color: #f8f8f8;
127109
overflow: auto;
128110
cursor: text;
111+
-moz-box-shadow: 0px 0px 20px #ddd;
112+
-webkit-box-shadow: 0px 0px 20px #ddd;
113+
box-shadow: 0px 0px 20px #ddd;
129114
}
130115

131116
div#terminal

0 commit comments

Comments
 (0)