Skip to content
This repository was archived by the owner on Mar 21, 2023. It is now read-only.

Commit 76fbf54

Browse files
author
Cam
committed
Initial Commit
This is the first version
1 parent db01f72 commit 76fbf54

35 files changed

+10582
-0
lines changed

assets/custom.css

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
/* Why the hell do lists still put their style outside the div? */
2+
ul {
3+
list-style-position: inside;
4+
}
5+
6+
7+
/* Cam's Custom Tiny Tags */
8+
.tag {
9+
padding: 0 9px 0 8px;
10+
background: #58a9e2;
11+
text-decoration: none;
12+
-moz-border-radius-bottomright: 2px;
13+
-webkit-border-bottom-right-radius: 2px;
14+
border-bottom-right-radius: 2px;
15+
-moz-border-radius-topright: 2px;
16+
-webkit-border-top-right-radius: 2px;
17+
border-top-right-radius: 2px;
18+
float: left;
19+
height: 20px;
20+
line-height: 20px;
21+
position: relative;
22+
font-size: 13px;
23+
margin: 10px 5px 4px 10px;
24+
list-style-type: none;
25+
}
26+
.tag a {
27+
color: #FFF;
28+
}
29+
.tag:before {
30+
content: "";
31+
float: left;
32+
position: absolute;
33+
top: 0;
34+
left: -10px;
35+
width: 0;
36+
height: 1px;
37+
border-color: transparent #58a9e2 transparent transparent;
38+
border-style: solid;
39+
border-width: 10px 10px 10px 0;
40+
-moz-border-radius-topleft: 2px;
41+
-webkit-border-top-left-radius: 2px;
42+
-moz-border-radius-bottomright: 0px;
43+
-webkit-border-bottom-right-radius: 0px;
44+
}
45+
.tag:after {
46+
content: "";
47+
position: absolute;
48+
top: 8px;
49+
left: -2px;
50+
float: left;
51+
width: 4px;
52+
height: 4px;
53+
-moz-border-radius: 2px;
54+
-webkit-border-radius: 2px;
55+
border-radius: 2px;
56+
background: #fff;
57+
}

assets/custom.modernizr.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)