Skip to content

Commit 6f39090

Browse files
committed
removed language colour coding
1 parent 8c2b8b4 commit 6f39090

File tree

2 files changed

+1
-30
lines changed

2 files changed

+1
-30
lines changed

assets/style.css

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -166,34 +166,6 @@ li.repo h2 {
166166
overflow: hidden;
167167
}
168168

169-
li.repo h3 {
170-
font-size: 11px;
171-
margin-top: 2px;
172-
margin-bottom: 15px;
173-
color: #999;
174-
}
175-
176-
.repo:after {
177-
content: '';
178-
position: absolute;
179-
right: 0;
180-
top: 0;
181-
width: 0;
182-
height: 0;
183-
border-bottom: 30px solid transparent;
184-
border-left: 30px solid transparent;
185-
border-right: 30px solid #0080B0;
186-
pointer-events: none;
187-
}
188-
189-
.repo.javascript:after {
190-
border-right-color: #333;
191-
}
192-
193-
.repo.python:after {
194-
border-right-color: #6aad2d;
195-
}
196-
197169
h2.fork {
198170
background: url(fork.png) no-repeat center left;
199171
padding: 0 0 0 20px;

index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,13 @@
5151

5252
function addRepo(repo, target) {
5353
if (target) {
54-
var $item = $("<li>").addClass("repo grid-1 " + (repo.language || '').toLowerCase());
54+
var $item = $("<li>").addClass("repo grid-1");
5555
var $link = $("<a>").attr("href", repoUrl(repo)).appendTo($item);
5656
if (repo.fork) {
5757
$link.append($('<h2 class="fork">').text(repo.name));
5858
} else {
5959
$link.append($("<h2>").text(repo.name));
6060
}
61-
$link.append($("<h3>").text(repo.language));
6261
$link.append($("<p>").text(repoDescription(repo)));
6362
$item.appendTo(target);
6463
}

0 commit comments

Comments
 (0)