Skip to content

Commit a84b605

Browse files
author
Bryce Murphy
committed
Merge branch 'master' of github.com:jrtechs/github-graphs
2 parents ef41555 + 978dcb7 commit a84b605

5 files changed

Lines changed: 34 additions & 17 deletions

File tree

public/GraphGenerator.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ <h1 id="search" class="m-title">Search GitHub:</h1>
5959
</div>
6060
<div class="card-deck text-center">
6161
<div class="card rounder">
62-
<div class="card-header">
62+
<div class="card-header rounder">
6363
<h1 class="m-title">Interactive Friends Chart</h1>
6464
</div>
6565
<div class="card-body">
@@ -73,7 +73,7 @@ <h1 class="m-title">Interactive Friends Chart</h1>
7373
<p></p>
7474
</div>
7575
<div class="card rounder">
76-
<div class="card-header">
76+
<div class="card-header rounder">
7777
<h1 class="m-title">Repo Timeline</h1>
7878
</div>
7979
<div class="card-body">
@@ -103,7 +103,7 @@ <h1 id="search" class="m-title">Search GitHub:</h1>
103103
</div>
104104
<div class="card-deck text-center">
105105
<div class="card rounder">
106-
<div class="card-header">
106+
<div class="card-header rounder">
107107
<h1 class="m-title">Interactive Organization Chart</h1>
108108
</div>
109109
<div class="card-body">
@@ -117,7 +117,6 @@ <h1 class="m-title">Interactive Organization Chart</h1>
117117
</div>
118118
</div>
119119
</div>
120-
</div>
121120
</div>
122121
</body>
123122
</html>

public/about.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@
3838
width: 40px;
3939
}
4040

41-
.plink {
42-
color: rgb(250, 152, 33);
43-
}
44-
4541
@media (max-width: 767px) {
4642
#content-title {
4743
height: 40px;

public/about.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ <h1 class="big-title text-center">What is this?</h1>
4646
</div>
4747
<div id="content-body" class="container">
4848
<p style="padding: 10px;">
49-
This is an interactive website which allows you to make graphs of the github network.
50-
Currently we have three types of graphs-- the most popular of which is our friends graph.
51-
The friends graphs helps you visualize clusters of friends/collaborators on GitHub.
49+
This is an interactive website which allows you to make various graphs of information from
50+
the GitHub network. Currently the site generates three types of graphs-- the most popular and entertaining
51+
of which is the friends graph. The friends graph helps you visualize clusters of friends/collaborators on GitHub.
5252
This can be used to spot clusters within organizations and schools.
5353
</p>
5454
<p style="padding: 10px;">
55-
This is an open source project, all the source code can be found on github.
56-
New collaborators are always welcomed; look at our github repository for contributing guidelines.
55+
This is an open source project, all the source code can be found on GitHub.
56+
New collaborators are always welcomed; look at our GitHub repository for contributing guidelines.
5757
</p>
5858
</div>
5959
<div id="content-title">
@@ -77,7 +77,7 @@ <h1 class="big-title text-center">Developers</h1>
7777
</div>
7878
<div class="card-body">
7979
<p>
80-
I did a large chunk of work with the backend pulling data from github and generating the graphs with visJS.
80+
Managed a majority of the work with the backend, pulling data from GitHub and generating the graphs with visJS.
8181
</p>
8282
</div>
8383
<div class="links row text-center">
@@ -105,7 +105,7 @@ <h1 class="big-title text-center">Developers</h1>
105105
</div>
106106
<div class="card-body">
107107
<p>
108-
Worked on pulling api data from github to create the mini profile display and some graphs.
108+
Worked on pulling API data from GitHub to create the mini-profile display and some graph work.
109109
</p>
110110
</div>
111111
<div class="links row text-center">
@@ -133,7 +133,7 @@ <h1 class="big-title text-center">Developers</h1>
133133
</div>
134134
<div class="card-body">
135135
<p>
136-
Worked on the front end design of the website and designed graphic art for this website.
136+
Worked on the front-end design of the website, responsible for a majority of the html and css elements.
137137
</p>
138138
</div>
139139
<div class="links row text-center">

public/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ <h1 class="m-title" style="padding-top: 5px;">What can I do here?</h1>
9999
</div>
100100
<img class="side-img img-fluid col" style="top: 50px;" src="./img/recording.gif" />
101101
</div>
102-
<p>check</p>
103102
</div>
104103
</body>
105104
</html>

public/style.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@
156156
background-color: rgb(208, 208, 208);
157157
}
158158

159+
.card-header {
160+
background-color: rgb(208, 208, 208);
161+
}
162+
159163
.card-body {
160164
background-color: rgb(242, 242, 242);
161165
}
@@ -169,9 +173,28 @@
169173
top: 10px;
170174
}
171175

176+
.footer {
177+
background-color: rgb(208, 208, 208);
178+
position: absolute;
179+
height: 70px;
180+
width: 100%;
181+
bottom: 0px;
182+
}
183+
184+
.footer-text {
185+
position: relative;
186+
top: 15px;
187+
left: 70px;
188+
}
189+
190+
.plink {
191+
color: rgb(250, 152, 33);
192+
}
193+
172194
body {
173195
background-color: #232323;
174196
}
197+
175198
@media (max-width: 767px) {
176199
.big-title {
177200
font-size: 30px;

0 commit comments

Comments
 (0)