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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
body {
background-color: #081f28;
color: #708284;
font-family: 'Helvetica Neue', Helvetica, sans-serif;
font-size: 18px;
}
h1 {
margin: 0;
padding: 0;
font-size: 4em;
}
a {
color: #2076c7;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h2 {
font-weight: normal;
font-size: 1.2em;
}
h3 {
font-size: 2.6em;
margin: 0;
}
h1, h2 {
margin: 0;
}
header span {
font-size: 0.5em;
font-weight: normal;
}
nav ul {
margin: 0;
padding: 6px 0 0 3px;
}
nav li {
list-style: none;
display: inline;
padding-right: 12px;
font-weight: bold;
font-size: 0.9em;
}
footer ul {
list-style: none;
padding: 12px 0;
}
footer ul li {
float: left;
margin-right: 40px;
font-size: 0.8em;
font-weight: bold;
}
.wrap {
width: 960px;
margin: 20px auto 0 auto;
}
header {
border-top: 4px solid #708284;
padding: 4px 0 12px 0;
}
article header {
border-top: 2px solid #708284;
}
pre {
border-radius: 2px;
background-color: #03262f;
padding: 6px 0;
color: #819090;
}
p {
line-height: 1.4em;
}
section {
margin-top: 40px;
}
section.columns {
-webkit-column-count: 2;
-webkit-column-gap: 50px;
-webkit-hyphens: auto;
min-height: 720px;
font-size: 18px;
}
.download ul {
list-style: none;
padding: 0;
}
.download li {
font-size: 1.2em;
}
pre .keyword, pre .special {
font-weight: bold;
color: #2076c7
}
pre .string, pre .regexp {
color: #728a06
}
pre .class {
color: #A57707;
}
pre .number {
color: #D11c24
}
pre .comment {
color: grey;
font-style: italic;
}
|