-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (61 loc) · 971 Bytes
/
style.css
File metadata and controls
62 lines (61 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
body {
max-width: 820px;
margin: 0 auto;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
padding: 0 10px;
}
.two-col {
-webkit-columns: 300px 2;
-moz-columns: 300px 2;
columns: 300px 2;
}
.two-col :first-child {
margin-top: 0;
}
.no-break {
overflow: hidden; /* fix for Firefox */
break-inside: avoid-column;
-webkit-column-break-inside: avoid;
}
.github-link {
background:url(github.png) no-repeat left center;
padding-left:24px;
display:inline-block;
line-height:20px;
opacity:0.75;
}
.github-link:hover {
opacity:1;
}
a {
color: #0096ff;
}
a:hover {
color: #f3a234;
}
h3,h4,h5,h6 {
color:#0c5dcb;
}
h1 {
color:#0c5dcb;
border-bottom:1px solid #0c5dcb;
}
h2 {
color:#0c5dcb;
border-bottom:1px dotted #0c5dcb;
}
.nav {
list-style-type:none;
padding: 0;
}
.nav li {
display: inline-block;
}
.nav li a {
display: inline-block;
border:1px solid #0096ff;
border-radius: 5px;
padding:3px;
min-width:100px;
text-align: center;
}