Skip to content

Commit

Permalink
add janky triangles
Browse files Browse the repository at this point in the history
  • Loading branch information
maccman committed Jan 27, 2012
1 parent f0f9cf9 commit dacde82
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/strftime.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,4 @@
return hour;
}

}());
}());
41 changes: 40 additions & 1 deletion assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,43 @@ div.project-title {
height: 30px;
}

.project-description {}
.project-description {

}

.project {
position: relative;
}

.project::after {
content: '';
position: absolute;
right: 0;
top: 0;

width: 0;
height: 0;
border-bottom: 50px solid transparent;
border-left: 50px solid transparent;
border-right: 50px solid red;
}

.project.JavaScript::after {
border-right-color: #0080B0;
}

.project.Scala::after {
border-right-color: #7AC9DE;
}

.project.Ruby::after {
border-right-color: #B60202;
}

.project.Java::after {
border-right-color: brown;
}

.project.Python::after {
border-right-color: #6AAD2D;
}

0 comments on commit dacde82

Please sign in to comment.