Skip to content

Commit 64a3b22

Browse files
Add attribution and Github links
1 parent 5bc8a3a commit 64a3b22

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<link rel='shortcut icon' type='image/x-icon' href='images/favicon.ico' />
99
</head>
1010
<body>
11+
<a href="https://github.com/Haseeb-Qureshi/n-queens-visualizer"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
1112
<div id="root"></div>
1213
<script src="dist/bundle.js"></script>
1314
</body>

src/components/container.js

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ var Container = React.createClass({
1717
render: function () {
1818
return (
1919
<div className="container">
20+
<h1 className="title"> N-Queens Visualizer </h1>
21+
<h2 className="attribution">by <a href="https://github.com/Haseeb-Qureshi">Haseeb Qureshi</a></h2>
2022
<Board />
2123
<AlgoPanel algos={algos} />
2224
<div className="row"/>

src/css/main.css

+19
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,25 @@ body {
1717

1818
#root, #container {
1919
overflow: auto;
20+
margin-left: 15px;
21+
}
22+
23+
h1.title {
24+
margin: 30px 30px 30px 110px;
25+
color: #3cb0fd;
26+
font-size: 48px;
27+
text-shadow: 1px 1px 1px #000;
28+
}
29+
30+
h2.attribution {
31+
font-size: 18px;
32+
margin: -20px 0px 20px 113px;
33+
text-decoration: italicize;
34+
}
35+
36+
a {
37+
text-decoration: none;
38+
color: #4cc0ff;
2039
}
2140

2241
div.algo-panel {

0 commit comments

Comments
 (0)